import React from "react"; export declare const codeInlineVariants: (props?: ({ variant?: "surface" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; export declare const codeBlockVariants: (props?: ({ variant?: "surface" | null | undefined; } & import("class-variance-authority/types").ClassProp) | undefined) => string; type CodeBlockProps = { children?: React.ReactNode; className?: string; inline?: boolean; variant?: "surface"; wrapLongLines?: boolean; showLineNumber?: boolean; }; export declare function CodeBlock({ children, className, inline, variant, wrapLongLines, showLineNumber }: CodeBlockProps): JSX.Element; export {}; //# sourceMappingURL=CodeBlock.d.ts.map