UNPKG

mantine-datepicker-jalali

Version:
15 lines 843 B
/// <reference types="react" /> import { DecadeLevelSettings } from '../DecadeLevel'; import { YearLevelSettings } from '../YearLevel'; import { PickerBaseProps, DatePickerType } from '../../types'; import { CalendarBaseProps, CalendarSystemProps } from '../Calendar'; export interface MonthPickerBaseProps<Type extends DatePickerType = 'default'> extends PickerBaseProps<Type>, DecadeLevelSettings, YearLevelSettings, CalendarBaseProps { } export interface MonthPickerProps<Type extends DatePickerType = 'default'> extends MonthPickerBaseProps<Type>, CalendarSystemProps { } declare type MonthPickerComponent = (<Type extends DatePickerType = 'default'>(props: MonthPickerProps<Type>) => JSX.Element) & { displayName?: string; }; export declare const MonthPicker: MonthPickerComponent; export {}; //# sourceMappingURL=MonthPicker.d.ts.map