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