import type { TextFieldProps } from "@mui/material/TextField"; import type { FormControlProps } from "../FormControl/index.js"; export type FormLabelTextFieldProps = Omit & Pick & { /** * Shortcut for setting both `select` and `native` within SelectProps. */ nativeSelect?: boolean; }; /** * Like TextField, but uses a FormLabel instead of an InputLabel. Also allows * for inline help. */ declare const FormLabelTextField: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default FormLabelTextField;