import { IFixedDate } from '../specifics';
import { Category, Cycle, Month } from '../types';
import { IBaseHoliday, BaseHoliday } from './base-holiday';
export interface IFixedDateHoliday extends IBaseHoliday<string>, IFixedDate {
}
export declare class FixedDateHoliday extends BaseHoliday<string> implements IFixedDateHoliday {
    month: Month;
    day: number;
    constructor(key: string, category: Category, cycle: Cycle, validFrom: number, validTo: number, fixedDate: IFixedDate);
    get stringKey(): string;
    get translationKey(): string;
}
//# sourceMappingURL=fixed-date-holiday.d.ts.map