import { ComponentProps, ReactNode } from "react"; import { InternalProps, OmitInternalProps, SlotProps, StyledComponentProps } from "../../shared"; import { ResponsiveProp } from "../../styling"; declare const DefaultElement = "span"; export interface InnerCounterProps extends SlotProps, InternalProps, StyledComponentProps { /** * React children. */ children: ReactNode; /** * Whether or not the counter is disabled. */ disabled?: boolean; /** * Whether or not to add emphasis to the counter. */ highlight?: boolean; /** * Whether or not the counter push itself away from the leading sibling element. */ pushed?: boolean; /** * Whether or not to reverse counter elements order. */ reverse?: boolean; /** * A counter can vary in size. */ size?: ResponsiveProp<"xs" | "sm" | "md" | "lg" | "xl" | "2xl" | "3xl" | "4xl" | "5xl" | "inherit">; /** * The style to use. */ variant?: "basic" | "divider"; } export declare function InnerCounter(props: InnerCounterProps): JSX.Element; export declare namespace InnerCounter { var defaultElement: string; } /** * A counter indicate a running tally. * * [Documentation](https://orbit.sharegate.design/?path=/docs/counter--default-story) */ export declare const Counter: import("react").ForwardRefExoticComponent, "ref"> & import("react").RefAttributes>; export declare type CounterProps = ComponentProps; export {};