export declare const PUBLIC_KEY_LEN = 33; export declare class PublicKey { private readonly publicKey; constructor(publicKey: Uint8Array); static fromBytes(bytes: Uint8Array): [PublicKey, Uint8Array]; toBytes(): Uint8Array; static fromPrivateKey(privateKey: Uint8Array): PublicKey; } //# sourceMappingURL=publicKey.d.ts.map