import { IPayioScheduleSlot } from '../interfaces';
export declare class PayioScheduleSlotEntity implements IPayioScheduleSlot {
    catalogId: string;
    productCode: string;
    productId?: string | undefined;
    time: string;
    constructor(data?: Partial<PayioScheduleSlotEntity>);
}
