import * as aws from '@aws-sdk/client-kms'; import * as crypto from '@atproto/crypto'; export type KmsConfig = { keyId: string; } & Omit; export declare class KmsKeypair implements crypto.Keypair { private client; private keyId; private publicKey; jwtAlg: string; constructor(client: aws.KMS, keyId: string, publicKey: Uint8Array); static load(cfg: KmsConfig): Promise; did(): string; sign(msg: Uint8Array): Promise; } export default KmsKeypair; //# sourceMappingURL=kms.d.ts.map