/** markdown parse mode */ export declare class Markdown { static parseMode: "Markdown"; get [Symbol.toStringTag](): string; /** @deprecated use `Markdown.escape` instead */ static raw(source: string): string; /** escape all the danger characters */ static escape(source: string): string; /** bold text */ static bold(source: string, escape?: boolean): string; /** italic text */ static italic(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): string; } //# sourceMappingURL=markdown.d.ts.map