mantine-datepicker-jalali
Version:
jalali datepicker of mantine library
13 lines • 727 B
TypeScript
/// <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