import { type INodeType, type INodeTypeDescription, type ISupplyDataFunctions, type SupplyData } from 'n8n-workflow';
import { listInferenceProfiles, listModels } from './methods/listModels';
export declare class LmChatAwsBedrock implements INodeType {
    description: INodeTypeDescription;
    methods: {
        loadOptions: {
            listInferenceProfiles: typeof listInferenceProfiles;
            listModels: typeof listModels;
        };
    };
    supplyData(this: ISupplyDataFunctions, itemIndex: number): Promise<SupplyData>;
}
