import { CreateContactDto } from './dto/request/create-contact.dto';
import { ContactResponseDto } from './dto/response/contact-response.dto';
import { ListsResponseDto } from './dto/response/lists-response.dto';
import { SubscribeContactToListDto } from './dto/request/subscribe-contact-to-list.dto';
import { TagsResponseDto } from './dto/response/tags-response.dto';
import { AddTagToContactDto } from './dto/request/add-tag-to-contact.dto';
export declare class ActiveCampaignService {
    private static client;
    static createContact(contact: CreateContactDto): Promise<ContactResponseDto>;
    static getLists(): Promise<ListsResponseDto>;
    static subscribeContactToList(contactList: SubscribeContactToListDto): Promise<ListsResponseDto>;
    static getTags(): Promise<TagsResponseDto>;
    static addTagToContact(contactTag: AddTagToContactDto): Promise<any>;
    private static getClient;
}
