import React from 'react'; import { type Components } from 'react-markdown'; import type { CustomTagsConfig } from './type'; type ExtendedComponents = Components & { [key: string]: React.ComponentType | undefined; }; /** * Create components for rendering custom tags * This handles the rendering of custom tags as React components * * @param config Configuration for custom tags * @returns Extended components object */ export declare function defineCustomComponents(config: CustomTagsConfig): ExtendedComponents; export {};