import React from 'react'; import { DatePickerProps } from './types'; /** * DatePicker Component * * A comprehensive date picker component using flatpickr. * Supports various modes: single date, date with time, month, week, year * * @example * // Basic date picker * * * @example * // Date picker with time * * * @example * // Month picker * */ declare const DatePicker: React.ForwardRefExoticComponent>; export default DatePicker; //# sourceMappingURL=DatePicker.d.ts.map