import { CalRepeat } from "./utils/model/CalEvent"; export declare class CalendarUtils { static repeatTypes: { label: string; value: string; }[]; static weekDays: { label: string; title: string; value: string; }[]; static getRepeatText(data: CalRepeat): string; static _getTextRepeatWeek(wkdays: string[]): string; static displayDay(date: Date): string; static displayDate(date: Date): string; static displayWeek(date: Date): string; static displayMonth(date: Date): string; static displayTime(date: Date): string; static computePosByPoint(element: HTMLElement, e: MouseEvent, padding?: number): { direction: string | undefined; position: any; elementBounds: DOMRect; }; static computePosByTargetEl(element: HTMLElement, target: HTMLElement, jsEvent: MouseEvent, padding?: number): any; }