UNPKG

mantine-datepicker-jalali

Version:
13 lines 727 B
/// <reference types="react" /> import { PickerBaseProps, DatePickerType } from '../../types'; import { CalendarBaseProps, CalendarSystemProps, CalendarSettings } from '../Calendar'; export interface DatePickerBaseProps<Type extends DatePickerType = 'default'> extends PickerBaseProps<Type>, CalendarSettings, CalendarBaseProps { } export interface DatePickerProps<Type extends DatePickerType = 'default'> extends DatePickerBaseProps<Type>, CalendarSystemProps { } declare type DatePickerComponent = (<Type extends DatePickerType = 'default'>(props: DatePickerProps<Type>) => JSX.Element) & { displayName?: string; }; export declare const DatePicker: DatePickerComponent; export {}; //# sourceMappingURL=DatePicker.d.ts.map