export declare class LicensingPlan { Id: number; PlanId: number; PlanName: string; PlanStartDate?: string; PlanEndDate?: string; PlanExpiryDays?: number; FeatureDetails: FeatureDetails[]; constructor(data: any); } export declare class FeatureDetails { FeatureId: number; FeatureName: string; FeatureDescription: string; IsEnabled: boolean; Specification: any[]; constructor(data: any); }