export declare enum KeyPurpose {
    MANAGEMENT = 1,
    ACTION = 2,
    CLAIM = 3
}
export declare enum KeyType {
    ECDSA = 1,
    RSA = 2
}
export interface Key {
    purpose: KeyPurpose;
    type: KeyType;
    key: string;
}
