interface InputComponent {
    Address: DevfiveComponent<((__namedParameters) => Element), AddressInputProps>;
    Number: DevfiveComponent<(<T>(props) => ReactElement<any, string | JSXElementConstructor<any>>) & {
        _InternalPanelDoNotUseOrYouWillBeFired: FC<Antd.InputNumberProps<ValueType>>;
        displayName?: string;
    }, InputNumberProps>;
    Password: DevfiveComponent<ForwardRefExoticComponent<PasswordProps & RefAttributes<Antd.InputRef>>, PasswordProps>;
    Search: DevfiveComponent<ForwardRefExoticComponent<SearchProps & RefAttributes<Antd.InputRef>>, SearchProps>;
    TextArea: DevfiveComponent<ForwardRefExoticComponent<TextAreaProps & RefAttributes<TextAreaRef>>, TextAreaProps>;
    contextTypes?: ValidationMap<any>;
    defaultProps?: Partial<any>;
    displayName?: string;
    id?: string;
    propTypes?: WeakValidationMap<any>;
    <AsComponent>(props): Element;
}

Hierarchy (view full)

Properties

Address: DevfiveComponent<((__namedParameters) => Element), AddressInputProps>

Type declaration

Number: DevfiveComponent<(<T>(props) => ReactElement<any, string | JSXElementConstructor<any>>) & {
    _InternalPanelDoNotUseOrYouWillBeFired: FC<Antd.InputNumberProps<ValueType>>;
    displayName?: string;
}, InputNumberProps>
Password: DevfiveComponent<ForwardRefExoticComponent<PasswordProps & RefAttributes<Antd.InputRef>>, PasswordProps>
Search: DevfiveComponent<ForwardRefExoticComponent<SearchProps & RefAttributes<Antd.InputRef>>, SearchProps>
TextArea: DevfiveComponent<ForwardRefExoticComponent<TextAreaProps & RefAttributes<TextAreaRef>>, TextAreaProps>
contextTypes?: ValidationMap<any>
defaultProps?: Partial<any>
displayName?: string
id?: string
propTypes?: WeakValidationMap<any>

Generated using TypeDoc