import type { FormControlWithOverlayRef } from '../shared-types.js'; import type { DateTimePickerProps } from './types.js'; /** * Component to comfortably enter a date time value. * The `DateTimePicker` component automatically uses the user's settings for the * locale and timezone and formats the date and time accordingly. * @public */ export declare const DateTimePicker: (props: DateTimePickerProps & import("react").RefAttributes>) => React.ReactElement | null;