import { AvatarChannelType } from "../avatar/Avatar.constants"; import { nothing, TemplateResult } from "lit"; type ChannelType = (typeof AvatarChannelType)[number]; export declare const getTaskTypeTemplate: (isRestyle: boolean, mediaType: string, selected: boolean, status: string | null, iconSrc: string) => TemplateResult<1>; export declare const getChannelAvatar: (selected: boolean, status: string | null, type: ChannelType, slot?: TemplateResult) => TemplateResult<1>; export declare const renderTaskType: (mediaType: string, selected: boolean, status: string | null, iconSrc: string) => TemplateResult<1>; export declare const renderStatus: (status: string) => TemplateResult<1>; export declare const renderLegacyTaskType: (mediaType: string, selected: boolean, iconSrc: string) => TemplateResult<1>; export declare const renderChatCount: (quantity: number, isRestyle: boolean, element: HTMLElement) => TemplateResult<1> | typeof nothing; export {};