import { ISupplyDataFunctions, ILoadOptionsFunctions, INodeType, INodeTypeDescription, INodeListSearchResult } from 'n8n-workflow';
declare class SapAiCoreChatModel implements INodeType {
    methods: {
        listSearch: {
            searchModels: (this: ILoadOptionsFunctions) => Promise<INodeListSearchResult>;
        };
    };
    description: INodeTypeDescription;
    supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<{
        response: any;
    }>;
}
export { SapAiCoreChatModel };
//# sourceMappingURL=SapAiCoreChatModel.node.d.ts.map