import type { CommunityFeature, EnterpriseFeature } from "./types"; import { getSegregationFeatureSections, segregationFeatureMatrix, type FeatureMatrixRow, type FeatureMatrixSection } from "./feature-segregation"; export type { FeatureMatrixRow, FeatureMatrixSection }; export { segregationFeatureMatrix, getSegregationFeatureSections }; /** Community (MIT) — full document preview across supported formats. */ export declare const communityFeatures: CommunityFeature[]; /** Enterprise — preview plus collaboration and security extras. */ export declare const enterpriseFeatures: EnterpriseFeature[]; export declare function isCommunityFeature(feature: string): feature is CommunityFeature; export declare function isEnterpriseFeature(feature: string): feature is EnterpriseFeature; //# sourceMappingURL=features.d.ts.map