import { Event } from './event'; import { SedraResult } from './sedra'; import './locale'; /** * Represents one of 54 weekly Torah portions, always on a Saturday. * * `ParshaEvent` is for regular Parashat HaShavua readings. For Shabbatot * with holiday readings such as Shabbat Chol ha-Moed, use * `getHolidaysOnDate()` from `@hebcal/core`, or `getLeyningOnDate()` from * `@hebcal/leyning` when the display title and exact Torah readings are needed. */ export declare class ParshaEvent extends Event { readonly p: SedraResult; constructor(parsha: SedraResult); /** * @param [locale] Optional locale name (i.e: `'he'`, `'fr'`). Defaults to empty locale. */ render(locale?: string): string; basename(): string; url(): string | undefined; urlDateSuffix(): string; /** convenience function for compatibility with previous implementation */ get parsha(): string[]; }