import type { Message } from "discord-types/general"; /** * @internal */ export declare function _insertMessageAttributes(message: Message & { ignored: boolean; author: { globalName: string; }; }): Record; /** * @internal */ export declare function _insertAvatarAttributes({ status, isTyping, isMobile, src, size, "aria-label": ariaLabel, }: { status: boolean; isTyping: boolean; isMobile: boolean; size: string; src: string; "aria-label": string; }): Record; /** * @internal */ export declare function _insertHTMLClasses(): Record; export declare function start(): Promise; export declare function stop(): void;