import { PrayerManagerInterface } from './prayer-manager-interface.ts';
export interface BreviariumInterface extends PrayerManagerInterface {
    getCurrentDate(): Date;
    setDate(date: Date): void;
}
