import { DateRangeController } from '../application/date-range-controller.js'; import { DateTimeController } from '../application/date-time-controller.js'; import { MonthPickerController } from '../application/month-picker-controller.js'; export declare function renderRangePanel(root: HTMLElement, controller: DateRangeController): void; export declare function renderDateTimePanel(root: HTMLElement, controller: DateTimeController): void; export declare function renderMonthPickerPanel(root: HTMLElement, controller: MonthPickerController): void; export declare function positionPopup(trigger: HTMLElement, popup: HTMLElement, options?: { opens?: 'left' | 'right' | 'center' | 'auto'; drops?: 'down' | 'up' | 'auto'; }): void;