import { IPayioScheduleSlot } from '../interfaces';
import { IPayioScheduleDay } from '../interfaces/i-schedule-day';
export declare class PayioScheduleDayEntity implements IPayioScheduleDay {
    day: string;
    slots: IPayioScheduleSlot[];
    constructor(data?: Partial<PayioScheduleDayEntity>);
}
