import React from 'react'; export interface ICounter { className?: string; disabled?: boolean; id?: string; label?: string; name?: string; max?: string | number; min?: string | number; style?: React.CSSProperties; placeholder?: string; value: any; setValue(param: any): void; [x: string]: any; } export declare const Counter: React.FC;