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