/// /** * Properties for the {@link CodeBlock} component. * @group Components */ export interface CodeBlockProps { /** * The code to format. */ children: string; /** * Additional CSS classes to apply. */ className?: string; /** * The default language (defaults to `"typescript"`). */ defaultLanguage?: string; /** * The language of the code sample (defaults to the value of the * `defaultLanguage` property). */ language?: string; } /** * Format a code sample. * @group Components */ export declare function CodeBlock({ children, className, defaultLanguage, language, }: CodeBlockProps): JSX.Element; //# sourceMappingURL=CodeBlock.d.ts.map