/** * * * Code display component with syntax highlighting. * * Usage: * * .button { * background: #3b82f6; * border-radius: 8px; * } * * * Attributes: * - language: css | js | html | json (for syntax highlighting) * - title: optional title shown in header * - line-numbers: show line numbers */ import { RyElement } from '../core/ry-element.js'; export declare class RyCode extends RyElement { #private; static get observedAttributes(): string[]; setup(): void; get code(): string; set code(value: string); } //# sourceMappingURL=ry-code.d.ts.map