import type { HTMLAttributes } from 'react';
import React from 'react';
import type { SxProp } from '../sx';
export type CounterLabelProps = React.PropsWithChildren<HTMLAttributes<HTMLSpanElement> & {
    scheme?: 'primary' | 'secondary';
    className?: string;
} & SxProp>;
declare const CounterLabel: React.ForwardRefExoticComponent<HTMLAttributes<HTMLSpanElement> & {
    scheme?: "primary" | "secondary";
    className?: string;
} & SxProp & {
    children?: React.ReactNode | undefined;
} & React.RefAttributes<HTMLSpanElement>>;
export default CounterLabel;
//# sourceMappingURL=CounterLabel.d.ts.map