import BigNumber from './libs/bignumber'; export declare type TBuffer = Uint8Array | number[]; export interface IKeyPairBytes { readonly privateKey: Uint8Array; readonly publicKey: Uint8Array; } export interface IKeyPair { publicKey: string; privateKey: string; } export declare type TLong = string | BigNumber;