@mui/x-date-pickers
Version:
The community edition of the MUI X Date and Time Picker components.
17 lines • 656 B
TypeScript
import * as React from 'react';
import type { PickersInputBaseProps } from "../PickersInputBase/index.js";
import type { PickerTextFieldOwnerState } from "../../models/fields.js";
export interface PickersInputProps extends PickersInputBaseProps {
disableUnderline?: boolean;
}
export interface PickerInputOwnerState extends PickerTextFieldOwnerState {
/**
* `true` if the input has an underline, `false` otherwise.
*/
inputHasUnderline: boolean;
}
/**
* @ignore - internal component.
*/
declare const PickersInput: React.ForwardRefExoticComponent<Omit<PickersInputProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
export { PickersInput };