/// import { BaseInput, IBaseInputProps, IBaseInputState } from './base-input'; export interface IIntegerProps extends IBaseInputProps { placeholder?: string; min?: number; max?: number; numberValue: number; } export declare class IntegerInput extends BaseInput { protected readonly type: string; constructor(props: IIntegerProps); render(): JSX.Element; }