export interface GenerateKeyReturnType {
  mnemonic: string;
  JWK: any;
}

export interface ImportKeyReturnType {
  importedKey: any;
  mnemonic: string;
}

export interface ImportCryptoKeyReturnType {}
