import { LabelMode } from '@syncfusion/react-base'; import { DatePickerProps } from './types'; import * as React from 'react'; export { LabelMode }; type IDatePickerProps = IDatePicker & Omit, keyof IDatePicker>; export interface IDatePicker extends DatePickerProps { /** * The content to be rendered inside the component. * * @private * @default - */ element?: HTMLSpanElement | null; } /** * The DatePicker component provides an input with an integrated calendar popup for selecting a single date. * It supports date formatting, parsing, min/max date constraints, strict mode validation, custom calendar templates, * and can be rendered as an inline picker or a dialog-based picker. * * ```typescript * import { DatePicker } from '@syncfusion/react-calendars'; * * export default function App() { * return ; * } * ``` */ export declare const DatePicker: React.ForwardRefExoticComponent>; export default DatePicker;