import { Bech32Config } from '@keplr-wallet/types'; /** * Replace for @keplr-wallet/cosmos, we use this class insie @chain-registry/keplr, * but @keplr-wallet/cosmos depends on Buffer from node and this create problem on web enviroment */ export declare class Bech32Address { /** * Returns bech32 address format as required by Keplr and other wallets * * @param prefix Chain bech32 prefix * @returns a valid `Bech32Config` */ static defaultBech32Config: (prefix: string, validatorPrefix?: string, consensusPrefix?: string, publicPrefix?: string, operatorPrefix?: string) => Bech32Config; }