import type { CalendarInitBase } from '../types.js';
export interface GetWeekdaysInit extends OmitCalendarInitBase {
    longWeekdayFormat: Intl.DateTimeFormat;
    narrowWeekdayFormat: Intl.DateTimeFormat;
    shortWeekLabel?: string;
    weekLabel?: string;
}
type OmitCalendarInitBase = Omit<CalendarInitBase, 'weekNumberTemplate'>;
export interface ToUTCDateOffset {
    day?: number;
    month?: number;
    order?: 'dmy' | 'dym' | 'mdy' | 'myd' | 'ydm' | 'ymd';
    year?: number;
}
export {};
//# sourceMappingURL=types.d.ts.map