UNPKG

@mui/x-date-pickers

Version:

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

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