import { IVoucherSponsorship } from '../interfaces';
export declare class VoucherSponsorshipEntity implements IVoucherSponsorship {
    name: string;
    value: number;
    constructor(data?: Partial<VoucherSponsorshipEntity>);
}
