import { FC } from 'react';
import { CountInputs } from './useCount';
export interface CountProps extends CountInputs {
    /**
     * CSS class to apply to the counter element.
     */
    className?: string;
}
export declare const Count: FC<CountProps>;
