/// import { BaseTextFieldProps } from '@mui/material/TextField'; import { OutlinedInputProps } from '@mui/material/OutlinedInput'; interface ITextFieldProps extends BaseTextFieldProps { /** * Callback fired when the value is changed. * * @param {object} event The event source of the callback. * You can pull out the new value by accessing `event.target.value` (string). */ onChange?: OutlinedInputProps['onChange']; /** * The variant to use. * @default 'outlined' */ variant?: 'outlined'; /** * Props applied to the Input element. * It will be a [`FilledInput`](/api/filled-input/), * [`OutlinedInput`](/api/outlined-input/) or [`Input`](/api/input/) * component depending on the `variant` prop value. */ InputProps?: Partial; } export default function TextField(props: ITextFieldProps): JSX.Element; export {};