import { ProfilesKlaviyoApi } from './api/profiles';
import { ListsKlaviyoApi } from './api/lists';
export declare class KlaviyoApi {
    private readonly apiKey;
    private readonly token;
    constructor(apiKey: string, token: string);
    get Profiles(): ProfilesKlaviyoApi;
    get Lists(): ListsKlaviyoApi;
}
