import bufio from 'bufio'; import { AccountImport } from '../accountImport'; import { AccountDecodingOptions, AccountEncoder } from '../encoder'; export declare const BECH32_ACCOUNT_PREFIX = "ifaccount"; type Bech32Decoder = (reader: bufio.BufferReader, options?: AccountDecodingOptions) => AccountImport; export declare class Bech32Encoder implements AccountEncoder { VERSION: number; VERSION_DECODERS: Map; /** * @deprecated Use Base64JsonEncoder instead */ encode(value: AccountImport): string; decode(value: string, options?: AccountDecodingOptions): AccountImport; getSize(value: AccountImport): number; } export {}; //# sourceMappingURL=bech32.d.ts.map