import { SupportTicketStatus } from '@abyss-project/main'; export type SupportTimelinePhaseKey = 'open' | 'in-progress' | 'resolved' | 'closed'; export declare const SUPPORT_TIMELINE_STEPS: ReadonlyArray<{ key: SupportTimelinePhaseKey; statuses: readonly SupportTicketStatus[]; }>; export declare const supportStatusStepIndex: (status: SupportTicketStatus) => number; export type SupportTimelineAccentKind = 'error' | 'warning' | 'muted' | 'brand'; export declare const supportStatusAccentKind: (status: SupportTicketStatus) => SupportTimelineAccentKind;