import { OutlinedTextFieldProps } from '@mui/material'; import * as React from 'react'; interface OwnProps extends Omit { onChange?: (value: string) => void; } export type Props = React.PropsWithChildren; export declare function OutlinedTextField(props: Props): JSX.Element; export {};