/** hTML parse mode */ export declare class HTML { static parseMode: "HTML"; get [Symbol.toStringTag](): string; /** escape all the danger characters */ static escape(source: string): string; /** @deprecated use `HTML.escape` instead */ static raw(source: string): string; /** bold text */ static bold(source: string, escape?: boolean): string; /** italic text */ static italic(source: string, escape?: boolean): string; /** underlined text */ static underline(source: string, escape?: boolean): string; /** strikethrough text */ static strikethrough(source: string, escape?: boolean): string; /** spoilered text */ static spoiler(source: string, escape?: boolean): string; /** uRL with text */ static url(source: string, link: string, escape?: boolean): string; /** mention the user */ static mention(source: string, id: number | string, escape?: boolean): string; /** preformatted code */ static code(source: string, escape?: boolean): string; /** preformatted code */ static pre(source: string, language?: string, escape?: boolean): string; /** quotation */ static blockquote(source: string, escape?: boolean): string; /** custom emoji */ static emoji(emoji: string, id: string): string; } //# sourceMappingURL=html.d.ts.map