/** * Format a native token value for display. * * The Native Token might be ETH, Sepolia ETH, etc. * * @param wei The native token value in wei (fixed-point number with 18 decimals). * @param decimals The number of decimal places (or 'fraction digits') to display. */ export declare function NativeTokenValue({ wei, decimals }: { wei: bigint; decimals?: number; }): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=NativeTokenValue.d.ts.map