import { IPlan, ISubscription } from '../../types';
export declare class SubscriptionDTO implements ISubscription {
    deleted?: boolean;
    deletedOn?: Date;
    deletedBy?: string;
    createdOn?: Date;
    modifiedOn?: Date;
    createdBy?: string;
    modifiedBy?: string;
    id: string;
    subscriberId: string;
    startDate: string;
    endDate: string;
    status: number;
    planId: string;
    invoiceId: string;
    plan?: IPlan;
}
