import { InputProps } from '../interfaces.js';
export type InputCounterProps = {
    counter?: {
        range?: number;
        min?: number;
        max?: number;
        allowNegative?: boolean;
    };
};
export declare function InputCounter(props: InputCounterProps & InputProps): import("react/jsx-runtime").JSX.Element;
