Preparing search index...
    interface InputComponentType {
        new InputComponentType(
            props: InputProps,
            context?: any,
        ): Component<InputProps, any>;
        childContextTypes?: ValidationMap<any>;
        Color: InputColorPickerComponentType;
        contextType?: Context<any>;
        contextTypes?: ValidationMap<any>;
        defaultProps?: Partial<InputProps>;
        displayName?: string;
        getDerivedStateFromError?: GetDerivedStateFromError<InputProps, any>;
        getDerivedStateFromProps?: GetDerivedStateFromProps<InputProps, any>;
        Mask: InputMaskComponentType;
        Number: InputNumberComponentType;
        Password: InputPasswordComponentType;
        propTypes?: WeakValidationMap<InputProps>;
        TextArea: TextAreaComponentType;
        Time: InputTimeComponentType;
    }

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    childContextTypes?: ValidationMap<any>
    contextType?: Context<any>
    contextTypes?: ValidationMap<any>
    defaultProps?: Partial<InputProps>
    displayName?: string
    getDerivedStateFromError?: GetDerivedStateFromError<InputProps, any>
    getDerivedStateFromProps?: GetDerivedStateFromProps<InputProps, any>