@mui/x-date-pickers
Version:
The community edition of the Date and Time Picker components (MUI X).
11 lines (10 loc) • 414 B
TypeScript
import * as React from 'react';
import { PickersInputBaseProps } from '../PickersInputBase';
export interface PickersOutlinedInputProps extends PickersInputBaseProps {
notched?: boolean;
}
/**
* @ignore - internal component.
*/
declare const PickersOutlinedInput: React.ForwardRefExoticComponent<Omit<PickersOutlinedInputProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { PickersOutlinedInput };