import { INodeType, INodeTypeDescription } from 'n8n-workflow';
import { getGigaChatModels } from '../../shared/GigaChatModels';
import { apiGigaChatExecute } from './utils';
export declare class ApiGigaChat implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getGigaChatModels: typeof getGigaChatModels;
        };
    };
    execute: typeof apiGigaChatExecute;
}
