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