import { FC } from 'react'; import { type HighlighterProps } from "../Highlighter"; import { type MermaidProps } from "../Mermaid"; export declare const useCode: (raw: any) => { content: any; isSingleLine: boolean; lang: any; } | undefined; interface CodeBlockProps { children: any; enableMermaid?: boolean; fullFeatured?: boolean; highlight?: HighlighterProps; mermaid?: MermaidProps; } export declare const CodeLite: FC; export declare const CodeFullFeatured: FC; export {};