@mxenabled/mxui 1.5.7 → 1.5.9-alpha.al0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,7 @@
1
+ import { default as React } from 'react';
2
+ import { DateRange, PickersShortcutsProps } from '@mui/x-date-pickers-pro';
3
+ interface DatePickerShortcutsSmallProps extends PickersShortcutsProps<DateRange<Date>> {
4
+ selected?: string;
5
+ }
6
+ declare const DatePickerShortcutsSmall: React.FC<DatePickerShortcutsSmallProps>;
7
+ export default DatePickerShortcutsSmall;
@@ -0,0 +1,4 @@
1
+ import { PickersLayoutProps } from '@mui/x-date-pickers/PickersLayout';
2
+ import { DateRange } from '@mui/x-date-pickers-pro';
3
+ declare const DateRangePickerSmallLayout: (props: PickersLayoutProps<DateRange<Date>, Date, any>) => import("react/jsx-runtime").JSX.Element;
4
+ export default DateRangePickerSmallLayout;