import { IFixedWeekday } from '../specifics';
import { Category, Cycle, Month, Weekday, Which } from '../types';
import { IBaseHoliday, BaseHoliday } from './base-holiday';
export interface IFixedWeekdayHoliday extends IBaseHoliday<string>, IFixedWeekday {
}
export declare class FixedWeekdayHoliday extends BaseHoliday<string> implements IFixedWeekdayHoliday {
    month: Month;
    weekday: Weekday;
    which: Which;
    constructor(key: string, category: Category, cycle: Cycle, validFrom: number, validTo: number, fixedWeekday: IFixedWeekday);
    get stringKey(): string;
    get translationKey(): string;
}
//# sourceMappingURL=fixed-weekday-holiday.d.ts.map