export type CodeBlockProps = { language?: string; value: string; isFullWidth?: boolean; bare?: boolean; fill?: boolean; }; export declare function CodeBlock(props: CodeBlockProps): import("solid-js").JSX.Element;