import { IExecuteFunctions, ILoadOptionsFunctions, INodeExecutionData, INodeType, INodeTypeDescription, INodePropertyOptions } from 'n8n-workflow';
export declare class Kadam implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getClients(this: ILoadOptionsFunctions): Promise<any>;
            getCampaignsOptions(this: ILoadOptionsFunctions): Promise<any>;
            getAdFormats(this: ILoadOptionsFunctions): Promise<any>;
            getPaymentSystems(this: ILoadOptionsFunctions): Promise<any>;
            getCountries(this: ILoadOptionsFunctions): Promise<any>;
            getCampaignCategoriesOptions(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getLanguages(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getDevices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getCreativesOptions(this: ILoadOptionsFunctions): Promise<any>;
        };
    };
    execute(this: IExecuteFunctions): Promise<INodeExecutionData[][]>;
}
