import * as ssrFunctions from "./helper/ssr-functions"; import * as dataConnectorContants from "./constants/data-connectors"; import * as dataConnectorSources from "./constants/data-connector-souces"; import * as enums from "../builder/enums/index"; import * as featureRestrictionEnums from "./enums/feature-restrictions"; declare const featureRestrictions: { restrictedFeatures: { feature: string; restrictedElements: string[]; apiKey: featureRestrictionEnums.restrictionFeaturesEnums; }[]; getRestrictionFeaturesList: (atoms: any[]) => any[]; filterElementsByFeature: (data: any, options?: { removeEmptyContainers?: boolean | undefined; } | undefined) => { elements: any; sections: any; lightbox: any; }; restrictionFeaturesEnums: typeof featureRestrictionEnums.restrictionFeaturesEnums; featuresAccessEnums: typeof featureRestrictionEnums.featuresAccessEnums; HeadingTag: typeof featureRestrictionEnums.HeadingTag; }; export { ssrFunctions, dataConnectorContants, dataConnectorSources, enums, featureRestrictions };