import { INodeType, INodeTypeDescription } from 'n8n-workflow';
import { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
import { IExecuteFunctions } from 'n8n-workflow';
export declare class StraicoOfficial implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getModels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getVideoModels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getImageModels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
            getElevenLabsVoices(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
    execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>;
}
