import type { ReactNode } from 'react'; import type { BoxProps } from '../Box'; export type InputBoxProps = BoxProps & { addon?: ReactNode; input?: ReactNode; multiple?: boolean; error?: string; placeholder?: string; placeholderVisible?: boolean; small?: boolean; type: 'button' | 'checkbox' | 'color' | 'date' | 'datetime' | 'datetime-local' | 'email' | 'file' | 'hidden' | 'image' | 'month' | 'number' | 'password' | 'radio' | 'range' | 'reset' | 'search' | 'submit' | 'tel' | 'text' | 'time' | 'url' | 'week' | 'textarea' | 'select'; }; declare const InputBox: import("react").ForwardRefExoticComponent>; export default InputBox; //# sourceMappingURL=InputBox.d.ts.map