import React from 'react';
import { IInputCounter } from './types/inputCounter';
declare const InputCounter: <V extends string | unknown>(props: IInputCounter<V> & {
    ref?: React.ForwardedRef<HTMLInputElement | undefined>;
}) => JSX.Element;
export { InputCounter };
