export declare class JewishDate {
    private year;
    private month;
    private day;
    constructor(year: number, month: number, day: number);
    static fromGregorian(date: Date): void;
    toGregorian(): void;
    toString(): void;
}
