import { FC } from 'react'; import { Dayjs } from 'dayjs'; export declare const DEFAULT_ARIA_LABEL = "Date picker"; export type DateTimeInputVariant = 'date' | 'time' | 'datetime'; export type RangePart = 'start' | 'end'; export interface DateTimeInputProps { value: [Dayjs | null, Dayjs | null] | Dayjs | null; format: string; placeholder?: string; onClick?: () => void; isOpen: boolean; className?: string; ariaLabel?: string; variant?: DateTimeInputVariant; activeRangePart?: RangePart; onRangePartClick?: (part: RangePart) => void; popoverId?: string; } export declare const DateTimeInput: FC;