declare type CalendarWidgetStringOrArrayOfStrings = Record<string, string | string[]>;
interface CalendarWidgetOptions {
    startYear: number;
    startMonth: number;
    container: string;
    translations: CalendarWidgetStringOrArrayOfStrings;
}
export declare const renderCalendarWidget: ({ startYear, startMonth, container, translations }: CalendarWidgetOptions) => void;
export {};
