import { Element } from "../node_modules/.pnpm/@types_hast@3.0.4/node_modules/@types/hast/index.js"; import { CodeComponent, CodeHeaderProps, PreComponent, SyntaxHighlighterProps } from "./types.js"; import { ComponentType, FC } from "react"; //#region src/overrides/CodeBlock.d.ts type CodeBlockProps = { node: Element | undefined; language: string; code: string; components: { Pre: PreComponent; Code: CodeComponent; CodeHeader: ComponentType; SyntaxHighlighter: ComponentType; }; }; declare const DefaultCodeBlock: FC; //#endregion export { CodeBlockProps, DefaultCodeBlock }; //# sourceMappingURL=CodeBlock.d.ts.map