import { ComponentType } from "react"; import { ContentFragmentV1Properties } from "./model"; export interface ContentFragmentV1Registry { mapRenderer: (models: string | string[], component: ComponentType) => void; getRenderer(model: string): ComponentType; } declare class ContentFragmentRegistryV1Impl implements ContentFragmentV1Registry { mapRenderer(resourceTypes: string | string[], clazz: ComponentType): void; static mapRenderer(resourceTypes: string | string[], clazz: ComponentType): void; getRenderer(model: string): ComponentType; static getRenderer(model: string): ComponentType; private static getModelKey; } declare const _default: ContentFragmentRegistryV1Impl; export default _default; export declare const MapToContentFragmentModel: (models: string | string[]) => (clazz: ComponentType) => void; //# sourceMappingURL=ContentFragmentV1Registry.d.ts.map