import { MultivalueTag } from "@nesto-software/moment-holiday-core";
/**
 * Indicates that the holiday is only applicable for people with one of the given
 * religions.
 */
export declare class ReligionTag extends MultivalueTag<Religion> {
    private readonly _religionOrReligions;
    constructor(_religionOrReligions: Religion | Religion[]);
}
export declare enum Religion {
    ENVANGELISCH_AB = "Evangelische Kirche A.B.",
    ENVANGELISCH_HB = "Evangelische Kirche H.B.",
    ALTKATHOLISCHE_KIRCHE = "Altkatholische Kirche",
    EVANGELISCH_METHODISTISCH = "Evangelisch-methodistischen Kirche"
}
