@mui/internal-docs-infra
Version:
MUI Infra - internal documentation creation tools.
15 lines • 359 B
TypeScript
import * as React from 'react';
import type { VariantSource } from "../CodeHighlighter/types.js";
export declare function Pre({
children,
className,
ref,
shouldHighlight,
hydrateMargin
}: {
children: VariantSource;
className?: string;
ref?: React.Ref<HTMLPreElement>;
shouldHighlight?: boolean;
hydrateMargin?: string;
}): React.ReactNode;