import React from 'react'; import { IBoxProps, ITextProps, IIconProps, IStackProps } from '../../primitives'; export declare const StatLabel: React.MemoExoticComponent<({ style, ...props }: ITextProps) => JSX.Element>; export declare const StatNumber: React.MemoExoticComponent<({ style, ...props }: ITextProps) => JSX.Element>; export declare const StatHelpText: React.MemoExoticComponent<({ style, ...props }: IBoxProps) => JSX.Element>; declare type IStatArrowProps = IIconProps | { type?: 'increase' | 'decrease'; }; export declare const StatArrow: React.MemoExoticComponent<({ type, ...props }: IStatArrowProps) => JSX.Element>; export declare const StatGroup: React.MemoExoticComponent>, string | number | symbol> & import("styled-system").SpaceProps>, string | number | symbol> & import("styled-system").LayoutProps>> & import("styled-system").FlexboxProps>> & import("styled-system").TypographyProps>> & import("styled-system").PositionProps>> & import("../../../utils/customProps").customBorderProps & import("../../../utils/customProps").customPositionProps & import("../../../utils/customProps").customExtraProps & import("../../../utils/customProps").customOutlineProps & import("../../../utils/customProps").customShadowProps & import("../../../utils/customProps").customLayoutProps & import("../../../utils/customProps").customTypographyProps & import("../../../utils/customProps").customBackgroundProps & import("../../../utils/customProps").customTransformProps & import("../../../utils/customProps").customFlexboxProps & import("styled-system").BorderProps>, import("csstype").Property.BorderRadius> & { style?: import("react-native").ViewStyle | undefined; children?: any; shadow?: number | undefined; _text?: ITextProps | undefined; } & React.RefAttributes>>; declare type IStatComponentType = ((props: IBoxProps) => JSX.Element) & { Label: React.MemoExoticComponent<(props: ITextProps) => JSX.Element>; Number: React.MemoExoticComponent<(props: ITextProps) => JSX.Element>; HelpText: React.MemoExoticComponent<(props: IBoxProps) => JSX.Element>; Arrow: React.MemoExoticComponent<(props: IStatArrowProps) => JSX.Element>; Group: React.MemoExoticComponent<(props: IStackProps) => JSX.Element>; }; declare const Stat: IStatComponentType; export default Stat;