import * as React from 'react';
import type { BaseUIComponentProps } from '../utils/types.js';
/**
* A native input element that automatically works with [Field](https://base-ui.com/react/components/field).
* Renders an `` element.
*
* Documentation: [Base UI Input](https://base-ui.com/react/components/input)
*/
declare const Input: React.ForwardRefExoticComponent>;
declare namespace Input {
interface Props extends BaseUIComponentProps<'input', State> {
}
interface State {
}
}
export { Input };