declare const utils: { formatAddress: (address?: string, offset?: number) => string; formatAmount: (amount: string | number) => string; formatHumanAmount: (amount: string | number, decPlaces?: number) => string; maxDecimals: (num: string | number, decPlaces?: number, method?: "round" | "floor" | "ceil") => number; slug: (str: string) => string; }; export default utils;