/// declare const truncateEthAddress: (address?: string, separator?: string) => string; declare const truncateENSAddress: (ensName: string, maxLength: number) => string; declare const nFormatter: (num: number, digits?: number) => string; declare const detectBrowser: () => "" | import("detect-browser").Browser | "bot" | "node" | "react-native"; declare const detectOS: () => "" | import("detect-browser").OperatingSystem | NodeJS.Platform; declare const isAndroid: () => boolean; declare const isMobile: () => boolean; declare const getWalletDownloadUri: (connectorId: string) => string; export { nFormatter, truncateEthAddress, truncateENSAddress, isMobile, isAndroid, detectBrowser, detectOS, getWalletDownloadUri, };