import { HDate } from '@hebcal/hdate';
import { HolidayEvent } from './HolidayEvent';
import './locale';
/** YKK is minor day of atonement on the day preceeding each Rosh Chodesh */
export declare class YomKippurKatanEvent extends HolidayEvent {
    private readonly nextMonthName;
    /**
     * @private
     * @param date Hebrew date event occurs
     * @param nextMonthName name of the upcoming month
     */
    constructor(date: HDate, nextMonthName: string);
    basename(): string;
    /**
     * @param [locale] Optional locale name (defaults to empty locale)
     */
    render(locale?: string): string;
    /**
     * @param [locale] Optional locale name (defaults to empty locale)
     */
    renderBrief(locale?: string): string;
    url(): string | undefined;
}
