export declare enum Unit {
    MG = 0,
    GB = 1
}
export default interface DataPlan {
    startDate: number;
    monthlyDataPlan: {
        volume: number;
        unit: Unit;
    };
    threshold: number;
}
//# sourceMappingURL=DataPlan.d.ts.map