import type { ReactNode } from 'react'; import type { WithAttributes } from '@pega/cosmos-react-core'; type CodeBlockProps = WithAttributes<'code', { children: ReactNode; language?: string; }>; declare const CodeBlock: ({ children, ...restProps }: CodeBlockProps) => import("react/jsx-runtime").JSX.Element; export default CodeBlock; //# sourceMappingURL=CodeBlock.d.ts.map