import { FeatureConfig } from '@toolbox-web/grid/all'; /** * Feature Registry for @toolbox-web/grid-react * * Delegates to the core registry at `@toolbox-web/grid/features/registry`. * This module re-exports core functions so existing feature modules continue * to work without changing their import paths. * * @example * ```tsx * // Import features you need (side-effect imports) * import '@toolbox-web/grid-react/features/selection'; * import '@toolbox-web/grid-react/features/filtering'; * * // Props work automatically - no async loading, no HTTP requests * * ``` */ export { clearFeatureRegistry, createPluginFromFeature, getFeatureFactory, getRegisteredFeatures, isFeatureRegistered, registerFeature } from '@toolbox-web/grid/features/registry'; export type { PluginFactory } from '@toolbox-web/grid/features/registry'; export type FeatureName = Exclude; //# sourceMappingURL=feature-registry.d.ts.map