import { ConfiguredComponent } from '@befe/brick-core'; import dayjs, { Dayjs } from 'dayjs'; interface MultiDatePanelProps { value: number[]; displayedDate: Dayjs; hideNow?: boolean; getDisabledItem?: (date: Dayjs, firstDayOfCurrentUnit: Dayjs) => boolean; onPrevYear: () => void; onNextYear: () => void; onPrevMonth: () => void; onNextMonth: () => void; onToggleZooming: () => void; onClick: (value?: number) => void; } /** */ export declare class MultiDatePanel extends ConfiguredComponent { componentLocale: import("@befe/brick-core").ComponentLocale<{ en_us: { get_year_month_title: (date: dayjs.Dayjs) => string; get_year_title: (date: dayjs.Dayjs) => string; get_month_text: (month: number) => string; get_week_day_text: (day: number) => string; }; zh_cn: { get_year_month_title: (date: dayjs.Dayjs) => string; get_year_title: (date: dayjs.Dayjs) => string; get_month_text: (month: number) => string; get_week_day_text: (day: number) => string; }; }>; render(): import("react/jsx-runtime").JSX.Element; private renderPanelTitle; private readonly getWeekDayText; private renderPanelContent; private renderItem; } export {};