import { LitElement } from 'lit'; import type { LightTheme } from '../../types.js'; export declare class DiscordThread extends LitElement implements LightTheme { /** * @internal */ static readonly styles: import("lit").CSSResult; /** * The name of the thread. */ name: string; /** * The the text within the call to action text. (i.e. 'See Thread' or 'x Messages') */ cta: string; lightTheme: boolean; protected render(): import("lit").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'discord-thread': DiscordThread; } } //# sourceMappingURL=DiscordThread.d.ts.map