import { FlowRemoteElement } from '../lib/FlowRemoteElement'; import { CodeBlockProps as RemoteCodeBlockElementProps } from '@mittwald/flow-react-components'; export type { CodeBlockProps as RemoteCodeBlockElementProps } from '@mittwald/flow-react-components'; export declare class RemoteCodeBlockElement extends FlowRemoteElement { static get remoteAttributes(): string[]; static get remoteProperties(): { className: {}; code: {}; copyable: {}; language: {}; showLineNumbers: {}; truncateLines: {}; }; static get remoteEvents(): {}; static get remoteSlots(): never[]; } declare global { interface HTMLElementTagNameMap { "flr-code-block": InstanceType; } }