import { IPayioSchedule, IPayioScheduleDay, IPayioScheduleProduct } from '../interfaces';
export declare class PayioScheduleEntity implements IPayioSchedule {
    active: boolean;
    createdAt: Date;
    days: IPayioScheduleDay[];
    id: string;
    name: string;
    products: IPayioScheduleProduct[];
    updatedAt: Date;
    constructor(data?: Partial<PayioScheduleEntity>);
}
