import { PublicKey } from './keypair'; export * from './transaction'; export * from './NearWallet'; export declare function getAddress(seedHex: string): string; export declare function checkPrivateKey(seedHex: string): boolean; export declare function getPubkey(seedHex: string): string; export declare function validateAddress(address: string): boolean; export declare function checkName(name: string): boolean; export declare function publicKeyFromSeed(seedHex: string): PublicKey; export declare function publicKeyFromBase58(pubkey: string): PublicKey;