@mui/x-date-pickers-pro
Version:
The Pro plan edition of the MUI X Date and Time Picker components.
17 lines • 864 B
TypeScript
import * as React from 'react';
import { BaseToolbarProps, ExportedBaseToolbarProps } from '@mui/x-date-pickers/internals';
import { DateTimeRangePickerToolbarClasses } from "./dateTimeRangePickerToolbarClasses.js";
export interface DateTimeRangePickerToolbarProps extends BaseToolbarProps, ExportedDateTimeRangePickerToolbarProps {
ampm?: boolean;
}
export interface ExportedDateTimeRangePickerToolbarProps extends ExportedBaseToolbarProps {
/**
* Override or extend the styles applied to the component.
*/
classes?: Partial<DateTimeRangePickerToolbarClasses>;
}
type DateTimeRangePickerToolbarComponent = ((props: DateTimeRangePickerToolbarProps & React.RefAttributes<HTMLDivElement>) => React.JSX.Element) & {
propTypes?: any;
};
declare const DateTimeRangePickerToolbar: DateTimeRangePickerToolbarComponent;
export { DateTimeRangePickerToolbar };