import { BaseEntity } from "./base.entity";
import { Feature } from './feature.entity';
export declare class Plan extends BaseEntity {
    name: string;
    description: string;
    price: number;
    billingPeriod: string;
    isCurrent: boolean;
    features: Feature[];
}
