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, keyUrl: string): KmsClient; }