UNPKG

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