import React, { ComponentPropsWithoutRef } from "react"; import { Nullable } from "../../types/utils"; import { Flex } from "../Flex"; type StatChangeBaseProps = { /** * This is in decimal format. ex. 0.1 for 10% */ change: Nullable; animated?: boolean; showPositiveSign?: boolean; }; export type StatChangeProps = StatChangeBaseProps & Omit, "children">; export declare const StatChangeBase: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref">, "children"> & React.RefAttributes>; type StatChangeCalloutInheritedProps = "change" | "animated"; export type StatChangeCalloutProps = Pick & { overrides?: { StatChange?: Partial>; }; } & ComponentPropsWithoutRef; export declare const StatChangeCallout: React.ForwardRefExoticComponent & { overrides?: { StatChange?: Partial>; }; } & Omit, "height" | "width"> & import("../..").TextColorVariantProps & React.RefAttributes, "ref"> & React.RefAttributes>; export declare const StatChange: React.ForwardRefExoticComponent, HTMLSpanElement>, "ref">, "children"> & React.RefAttributes> & { Callout: React.ForwardRefExoticComponent & { overrides?: { StatChange?: Partial>; }; } & Omit, "height" | "width"> & import("../..").TextColorVariantProps & React.RefAttributes, "ref"> & React.RefAttributes>; }; export {}; //# sourceMappingURL=StatChange.d.ts.map