import type { ILoadOptionsFunctions, INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class TiktokBusiness implements INodeType {
    description: INodeTypeDescription;
    methods: {
        listSearch: {
            searchAdvertisers: (this: ILoadOptionsFunctions) => Promise<{
                results: any;
            }>;
        };
    };
}
