import { NumberIndicatorVariant } from './NumberIndicator.utils';
import { JSX } from 'react';
export interface NumberIndicatorProps extends React.HTMLAttributes<HTMLSpanElement> {
    /** Content within the NumberIndicator. */
    label?: string;
    /**
     * Variant of the NumberIndicator.
     *
     * @default 'default'
     */
    variant?: NumberIndicatorVariant;
}
export declare const NumberIndicator: ({ label, className, variant, ...rest }: NumberIndicatorProps) => JSX.Element;
