import { EPayioScheduleSkill } from '../enums';
import { IPayioScheduleProduct } from '../interfaces/i-schedule-product';
export declare class PayioScheduleProductEntity implements IPayioScheduleProduct {
    code: string;
    description: string;
    price: number;
    skill: EPayioScheduleSkill;
    unit: string;
    constructor(data?: Partial<PayioScheduleProductEntity>);
}
