import { IconProps } from "@chakra-xui/icon"; import { ThemingProps, HTMLChakraProps } from "@chakra-xui/system"; import * as React from "react"; export interface StatLabelProps extends HTMLChakraProps<"dt"> { } export declare const StatLabel: import("@chakra-xui/system").ComponentWithAs<"dt", StatLabelProps>; export interface StatHelpTextProps extends HTMLChakraProps<"p"> { } export declare const StatHelpText: import("@chakra-xui/system").ComponentWithAs<"p", StatHelpTextProps>; export interface StatNumberProps extends HTMLChakraProps<"dd"> { } export declare const StatNumber: import("@chakra-xui/system").ComponentWithAs<"dd", StatNumberProps>; export declare const StatDownArrow: React.FC; export declare const StatUpArrow: React.FC; export interface StatArrowProps extends IconProps { type?: "increase" | "decrease"; } export declare const StatArrow: React.FC; export interface StatProps extends HTMLChakraProps<"div">, ThemingProps { } export declare const Stat: import("@chakra-xui/system").ComponentWithAs<"div", StatProps>; interface StatGroupProps extends HTMLChakraProps<"div"> { } export declare const StatGroup: import("@chakra-xui/system").ComponentWithAs<"div", StatGroupProps>; export {};