type CodeBlockProps = { isMulti?: boolean; secondaryTheme?: boolean; language?: string; highlightLines?: number[]; noPromptLines?: number[]; content: string; }; declare const CodeBlock: (props: CodeBlockProps) => import("@emotion/react/jsx-runtime").JSX.Element; export default CodeBlock;