/** * Truncate a deposit address for display, e.g. * `0x7854f3…5139F0` (Figma: Transfer Crypto). Keeps the leading + trailing * characters with an ellipsis between; short strings are returned unchanged. * Kept local (not `@funkit/utils`) so connect-rn doesn't take that dep just for * one formatter, and so the lead/trail counts can match the RN design. */ export declare function formatDepositAddress(address: string | undefined, leading?: number, trailing?: number): string; //# sourceMappingURL=formatDepositAddress.d.ts.map