import { IPayioScheduleProduct } from '../interfaces/i-schedule-product';
export declare class PayioScheduleProductEntity implements IPayioScheduleProduct {
    code: string;
    description: string;
    exceededWeightMessageText: string | null;
    exceededWeightPrice: number;
    helpYourSelf: boolean;
    id: string;
    price: number;
    unit: string;
    weightLimitMessage: number;
    weightLimitPrice: number;
    constructor(data?: Partial<PayioScheduleProductEntity>);
}
