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