import { INodeType, INodeTypeDescription } from 'n8n-workflow';
import { chatLoadGigaChatModels } from './utils';
import { gigaChatWithModel } from '../../shared/methods/ChatWithModel';
export declare class GigaChat implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            getGigaChatModels: typeof chatLoadGigaChatModels;
        };
    };
    execute: typeof gigaChatWithModel;
}
