import { SponsorshipValueEntity } from '../../general/entities/sponsorship-value.entity';
import { EVoucherTargetTypes } from '../../voucher';
import { IOrderBenefits } from '../interfaces';
export declare class OrderBenefitsEntity implements IOrderBenefits {
    description: string;
    id: string;
    referenceId: string;
    sponsorshipValues: SponsorshipValueEntity[];
    value: number;
    target: EVoucherTargetTypes;
    constructor(data?: Partial<OrderBenefitsEntity>);
}
