import { type RenderProps } from 'prism-react-renderer'; /** * @public */ export type HighlightLanguage = 'markup' | 'bash' | 'clike' | 'c' | 'cpp' | 'css' | 'javascript' | 'jsx' | 'coffeescript' | 'actionscript' | 'go' | 'graphql' | 'json' | 'markdown' | 'objectivec' | 'python' | 'reason' | 'sql' | 'tsx' | 'typescript' | 'yaml' | 'dql' | 'log'; interface HighlightExtendedProps { language?: HighlightLanguage; code: string; children: (props: RenderProps) => JSX.Element; } /** * Extends the `Highlight` component from the Prism library. * This component can be used across Strato components to handle loading additional and custom languages. * @internal */ export declare const HighlightExtended: (props: HighlightExtendedProps) => import("react/jsx-runtime.js").JSX.Element; export {};