import type { KeyContextQuery } from '@aws-cdk/cloud-assembly-schema';
import type { KeyContextResponse } from '@aws-cdk/cx-api';
import { type SdkProvider } from '../api/aws-auth/sdk-provider';
import { ContextProviderPlugin } from '../api/plugin';
export declare class KeyContextProviderPlugin implements ContextProviderPlugin {
    private readonly aws;
    constructor(aws: SdkProvider);
    getValue(args: KeyContextQuery): Promise<KeyContextResponse>;
    private findKey;
    private readKeyProps;
}
