import { Feature } from "./Feature";
export type PlanType = "FREE" | "PRO" | "ENTERPRISE";
export declare class Plan {
    readonly id: string;
    name: string;
    description: string;
    price: number;
    type: PlanType;
    features: Feature[];
    createdAt: Date;
    updatedAt: Date;
    constructor(id: string, name: string, description: string, price: number, type: PlanType, features: Feature[], createdAt: Date, updatedAt: Date);
}
//# sourceMappingURL=Plan.d.ts.map