/// import { CodeblockProps } from './types'; export declare function Codeblock({ className, children, as: Wrapper, theme, innerProps, isContainer, providers, language, parallel, async, onHighlight, onHighlightError, src, ...props }: CodeblockProps & { /** * Type of container to render. Either a string like div or a function that returns an element */ as?: keyof JSX.IntrinsicElements | ((p: any) => JSX.Element); }): JSX.Element;