import type { CommunityFeature, EnterpriseFeature } from "./types"; export type FeatureMatrixRow = { readonly section: string; readonly feature: string; readonly community: string; readonly enterprise: string; readonly planned?: boolean; readonly partialByDesign?: boolean; readonly flagKey?: EnterpriseFeature; readonly communityFeature?: CommunityFeature; }; export type FeatureMatrixSection = { readonly title: string; readonly rows: readonly FeatureMatrixRow[]; }; /** Community vs Enterprise capability matrix for Doc Preview. */ export declare const segregationFeatureMatrix: readonly FeatureMatrixRow[]; export declare function getSegregationFeatureSections(): FeatureMatrixSection[]; //# sourceMappingURL=feature-segregation.d.ts.map