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