import type { ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
import type { BedrockApi } from './resolveBedrockApi';
export type BedrockInferenceProfileSummary = {
    inferenceProfileId: string;
    inferenceProfileName: string;
    inferenceProfileArn: string;
    description?: string;
    models?: Array<{
        modelArn?: string;
    }>;
};
export declare function toProfileOption(profile: BedrockInferenceProfileSummary): INodePropertyOptions;
export declare function listBedrockInferenceProfiles(ctx: ILoadOptionsFunctions, { credentialsType, baseURL }: BedrockApi): Promise<BedrockInferenceProfileSummary[]>;
