/*! Strand UI | MIT License | dillingerstaffing.com */ import type { JSX } from "preact"; export interface CodeBlockProps extends Omit, "label"> { code: string; /** Language label, e.g. "html". */ language?: string; /** Render the copy control. */ copyable?: boolean; } /** * Code display with a language label and copy-to-clipboard. * * @example * */ export declare const CodeBlock: import("preact").FunctionalComponent & { ref?: import("preact").Ref | undefined; }>; //# sourceMappingURL=CodeBlock.d.ts.map