import React from "react"; import "./index.less"; export type { Props as AmountPercentageProps } from "./AmountPercentage"; export interface Props { value: number | null | undefined; scale: number; rounding?: "floor" | "ceil" | "round"; plusSignForPositive?: boolean; thousandSplitter?: boolean; nullText?: string; prefix?: string; postfix?: string; colorScheme?: "green+red-" | "highlight" | "highlight+" | "green-red+"; bold?: boolean; underline?: boolean; del?: boolean; className?: string; style?: React.CSSProperties; } export declare const Amount: ((props: Props) => React.JSX.Element) & { Percentage: ({ percentageScale, value, ...restProps }: import("./AmountPercentage").Props) => React.JSX.Element; };