1 | import { type HTMLChakraProps, type SlotRecipeProps, type UnstyledProp } from "../../styled-system";
|
2 | declare const useStatStyles: () => Record<string, import("../..").SystemStyleObject>;
|
3 | export { useStatStyles };
|
4 | export interface StatRootBaseProps extends SlotRecipeProps<"stat">, UnstyledProp {
|
5 | }
|
6 | export interface StatRootProps extends HTMLChakraProps<"dl", StatRootBaseProps> {
|
7 | }
|
8 | export declare const StatRoot: import("react").ForwardRefExoticComponent<StatRootProps & import("react").RefAttributes<HTMLDListElement>>;
|
9 | export declare const StatPropsProvider: React.Provider<StatRootBaseProps>;
|
10 | export interface StatLabelProps extends HTMLChakraProps<"dt"> {
|
11 | }
|
12 | export declare const StatLabel: import("react").ForwardRefExoticComponent<StatLabelProps & import("react").RefAttributes<HTMLElement>>;
|
13 | export interface StatValueTextProps extends HTMLChakraProps<"dd"> {
|
14 | }
|
15 | export declare const StatValueText: import("react").ForwardRefExoticComponent<StatValueTextProps & import("react").RefAttributes<HTMLElement>>;
|
16 | export interface StatHelpTextProps extends HTMLChakraProps<"span"> {
|
17 | }
|
18 | export declare const StatHelpText: import("react").ForwardRefExoticComponent<StatHelpTextProps & import("react").RefAttributes<HTMLElement>>;
|
19 | export interface StatValueUnitProps extends HTMLChakraProps<"span"> {
|
20 | }
|
21 | export declare const StatValueUnit: import("react").ForwardRefExoticComponent<StatValueUnitProps & import("react").RefAttributes<HTMLElement>>;
|
22 | export interface StatUpIndicatorProps extends HTMLChakraProps<"span"> {
|
23 | }
|
24 | export declare const StatUpIndicator: import("react").ForwardRefExoticComponent<StatUpIndicatorProps & import("react").RefAttributes<HTMLElement>>;
|
25 | export interface StatDownIndicatorProps extends HTMLChakraProps<"span"> {
|
26 | }
|
27 | export declare const StatDownIndicator: import("react").ForwardRefExoticComponent<StatDownIndicatorProps & import("react").RefAttributes<HTMLElement>>;
|