import type { INodeType, INodeTypeDescription } from 'n8n-workflow';
export declare class ElevenLabs implements INodeType {
    description: INodeTypeDescription;
    methods: {
        listSearch: {
            listVoices(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodeListSearchResult>;
        };
        loadOptions: {
            listVoiceGenders(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            listVoiceAges(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            listVoiceAccents(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<{
                name: string;
                value: string;
            }[]>;
            listModels(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodePropertyOptions[]>;
            listVoices(this: import("n8n-workflow").ILoadOptionsFunctions): Promise<import("n8n-workflow").INodePropertyOptions[]>;
        };
    };
}
