import React from 'react'; import { InputBoxClassesType } from '../../types'; declare type InputBoxProps = { focus?: boolean; classes: InputBoxClassesType; } & React.InputHTMLAttributes; declare const _default: React.MemoExoticComponent<{ ({ focus, classes, autoFocus, ...rest }: InputBoxProps): JSX.Element; displayName: string; __docgenInfo: { description: string; displayName: string; props: { focus: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; classes: { defaultValue: null; description: string; name: string; required: boolean; type: { name: string; }; }; }; }; }>; export default _default;