import { ILoadOptionsFunctions, INodePropertyOptions, INodeType, INodeTypeDescription, ISupplyDataFunctions, SupplyData } from 'n8n-workflow';
export declare class LmGigaChat implements INodeType {
    description: INodeTypeDescription;
    supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData>;
    methods: {
        loadOptions: {
            getGigaChatModels(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
        };
    };
}
