import * as React from 'react'; import { StandardProps } from '..'; import { InputBaseProps } from '../InputBase'; export interface OutlinedInputProps extends StandardProps { /** * The label of the input. It is only used for layout. The actual labelling * is handled by `InputLabel`. If specified `labelWidth` is ignored. */ label?: React.ReactNode; /** * The width of the label. Is ignored if `label` is provided. Prefer `label` * if the input label appears with a strike through. */ labelWidth?: number; /** * If `true`, the outline is notched to accommodate the label. */ notched?: boolean; } export type OutlinedInputClassKey = | 'root' | 'colorSecondary' | 'focused' | 'disabled' | 'adornedStart' | 'adornedEnd' | 'error' | 'marginDense' | 'multiline' | 'notchedOutline' | 'input' | 'inputMarginDense' | 'inputMultiline' | 'inputAdornedStart' | 'inputAdornedEnd'; /** * * Demos: * * - [Text Fields](https://material-ui.com/components/text-fields/) * * API: * * - [OutlinedInput API](https://material-ui.com/api/outlined-input/) * - inherits [InputBase API](https://material-ui.com/api/input-base/) */ export default function OutlinedInput(props: OutlinedInputProps): JSX.Element;