import React from 'react'; export interface AnalyzerComponentMap { OptionTree?: React.ComponentType; PartListTable?: React.ComponentType; DecisionAnalyzer?: React.ComponentType; PriceAnalyzer?: React.ComponentType; ArticleOverview?: React.ComponentType; SVGAnalyzer?: React.ComponentType; EkTextViewer?: React.ComponentType; CatalogMakeup?: React.ComponentType; RTVAnalyzer?: React.ComponentType; J3DEditor?: React.ComponentType; PropertiesEditor?: React.ComponentType; GridOverview?: React.ComponentType; PartlistDebug?: React.ComponentType; OptionTreeTable?: React.ComponentType; PriceList?: React.ComponentType; ErrorAndWarningOverview?: React.ComponentType; InspectModeTables?: React.ComponentType; } interface ProviderProps { components: AnalyzerComponentMap; children: React.ReactNode; } export declare const AnalyzerComponentsProvider: ({ components, children }: ProviderProps) => React.JSX.Element; export declare const useAnalyzerComponents: () => AnalyzerComponentMap; export declare const MissingAnalyzerComponent: ({ name }: { name: string; }) => React.JSX.Element; export {}; //# sourceMappingURL=analyzerComponents.d.ts.map