declare const _default: typeof DockKeypair; export default _default; declare class DockKeypair { static fromEntropy(entropy: Uint8Array): DockKeypair; static fromSeed(seed: Uint8Array): DockKeypair; static fromPrivateKey(privateKey: Uint8Array): DockKeypair; static verify(_message: Uint8Array, _signature: Uint8Array | Signature, _publicKey: Uint8Array | PublicKey): boolean; constructor(keyPair: any); keyPair: any; get verKeyType(): any; publicKey(): any; privateKey(): void; sign(message: any): any; _publicKey(): Uint8Array; _sign(_message: any): Uint8Array; }