import { TaskItemStatus } from "../taskitem/TaskItem.constants"; export type PresenceState = (typeof PresenceType)[number] | (typeof TaskItemStatus)[keyof typeof TaskItemStatus]; type ReturnType = { presenceIcon: string | undefined; presenceColor: string | undefined; }; export declare const PresenceType: readonly ["active", "meeting", "schedule", "call", "dnd", "presenting", "quiet-hours", "away", "idle", "inactive", "away-calling", "ooo", "busy", "on-mobile", "on-device", "on-hold", "engaged", "rona", "wrapup", ""]; export declare const getPresenceIconColor: (presenceType: PresenceState, failureBadge: boolean, isMomentumDesign?: boolean) => ReturnType; export {};