/// <reference types="react" />
import { SxProp } from '../sx';
export declare type CounterProps = {
    children: number;
} & SxProp;
export declare const Counter: ({ children, sx: sxProp, ...props }: CounterProps) => JSX.Element;
