import type { Asset } from '../../Openfort/types'; export declare function sanitizeAmountInput(value: string): string; export declare const sanitizeForParsing: (value: string) => string | null; export declare const formatBalance: (value: bigint | undefined, decimals: number) => string; export declare const formatBalanceWithSymbol: (value: bigint | undefined, decimals: number, symbol: string) => string; export declare const isSameToken: (a: Asset, b: Asset) => boolean; export declare const getAssetSymbol: (asset: Asset) => string; export declare const getAssetDecimals: (asset: Asset) => number;