import RequestClientWrapper from '../../RequestClientWrapper';
import Schedule from '../model/Schedule';
export default class SchedulesService {
    private readonly client;
    constructor(client: RequestClientWrapper);
    get(scheduleId: string): Promise<Schedule>;
    getAll(businessId: string): Promise<Schedule[]>;
    private mapSchedulePromise;
    private mapSchedulesPromise;
}
