export interface PublicHalfCryptoKeyPair { publicKey: CryptoKey; } export interface PrivateHalfCryptoKeyPair { privateKey: CryptoKey; } export declare type HalfCryptoKeyPair = PublicHalfCryptoKeyPair | PrivateHalfCryptoKeyPair;