import { KmsClient, KmsDriver } from "../kms-registry";
export declare class LocalKmsDriver implements KmsDriver {
    static PREFIX: string;
    static SECRET: string;
    /**
     * Register the local KMS driver with the KMS registry.
     */
    static register(): void;
    getKeyUrlPrefix(): string;
    newKmsClient(config: Map<string, string>, keyUrl: string): KmsClient;
}
