UNPKG

@mui/x-date-pickers

Version:

The community edition of the Date and Time Picker components (MUI X).

11 lines (10 loc) 391 B
import * as React from 'react'; import { PickersInputBaseProps } from '../PickersInputBase'; export interface PickersInputProps extends PickersInputBaseProps { disableUnderline?: boolean; } /** * @ignore - internal component. */ declare const PickersInput: React.ForwardRefExoticComponent<Omit<PickersInputProps, "ref"> & React.RefAttributes<HTMLDivElement>>; export { PickersInput };