import { Input as InputRoot } from './Input'; import { InputField } from './InputField'; export { useInputContext } from './hooks'; declare const Input: typeof InputRoot & { Root: typeof InputRoot; Field: typeof InputField; }; export { Input, InputRoot, InputField }; export type { InputContextValue, InputOwnProps, InputProps, InputFieldOwnProps, InputFieldProps, } from './types';