export type KeyPair = { publicKey: Uint8Array; secretKey: Uint8Array; }; export declare function loadOrCreateKeyPair(path: string): Promise;