import { LitElement, type TemplateResult } from 'lit'; /** * A **code block** is a component that contains 2 or more lines of read-only code. The code in a code block can be copied to the clipboard. * @alias Code Block */ export declare class PfV5CodeBlock extends LitElement { #private; static readonly styles: CSSStyleSheet[]; /** Flag for whether the code block is expanded */ expanded: boolean; render(): TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'pf-v5-code-block': PfV5CodeBlock; } }