/** * this file is based on * https://github.com/ItzDerock/discord-components/tree/main/packages/core/src/components/discord-code-block */ import { LitElement } from 'lit'; import type { LightTheme } from '../../types.js'; export declare class DiscordCodeBlock extends LitElement implements LightTheme { protected createRenderRoot(): this; language: string | undefined; /** * The code to display. */ code: string; lightTheme: boolean; render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'discord-code-block': DiscordCodeBlock; } } //# sourceMappingURL=DiscordCodeBlock.d.ts.map