import { ISchedule } from "./ISchedule";
export declare class ScheduleRepository {
    private readonly pmsPostgres;
    constructor();
    getSchedule(scheduleId: string): Promise<ISchedule>;
}
