export interface IKmsService {
    getPublicKey(): Promise<string>;
}
export declare class TeeKmsService {
    private readonly kmsService;
    constructor(kmsService: IKmsService);
    getAttestedPublicKey(): Promise<{
        publicKey: string;
        attestationJwt: string;
    }>;
    private requestCustomTokenWithNonce;
}
