import { INodeType, INodeTypeDescription } from 'n8n-workflow';
import { emLoadGigaChatModels, supplyEmbeddingsModel } from './utils';
export declare class EmGigaChat implements INodeType {
    description: INodeTypeDescription;
    supplyData: typeof supplyEmbeddingsModel;
    methods: {
        loadOptions: {
            getGigaChatModels: typeof emLoadGigaChatModels;
        };
    };
}
