import type { DatepickerOptions, LocaleConfig } from '../core/types'; export interface FooterCallbacks { onToday: () => void; onClear: () => void; onConfirm: () => void; onCancel: () => void; } export declare class FooterView { private opts; private locale; private callbacks; readonly root: HTMLElement; constructor(opts: DatepickerOptions, locale: LocaleConfig, callbacks: FooterCallbacks); private build; hasButtons(): boolean; }