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. */ accessor name: string; /** * The the text within the call to action text. (i.e. 'See Thread' or 'x Messages') */ accessor cta: string; accessor lightTheme: boolean; protected render(): import("lit-html").TemplateResult<1>; } declare global { interface HTMLElementTagNameMap { 'discord-thread': DiscordThread; } } //# sourceMappingURL=DiscordThread.d.ts.map