qt-ui-kit 1.0.114 → 1.0.116

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1,7 +1,16 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
- import * as React from 'react';
2
+ import * as React$1 from 'react';
3
3
  import React__default, { ReactNode, ReactElement } from 'react';
4
4
 
5
+ declare enum FilterCategory {
6
+ FIRES = "fires",
7
+ INSIGHTS = "insights",
8
+ NEW = "new",
9
+ DONE = "done"
10
+ }
11
+ declare enum MoreFilter {
12
+ MORE = "more"
13
+ }
5
14
  declare enum IntegrationService {
6
15
  SLACK = "slack",
7
16
  GMAIL = "google_mail",
@@ -31,7 +40,9 @@ declare enum BaseIconName {
31
40
  CHECK = "check",
32
41
  LEFT_ARROW = "left_arrow",
33
42
  RIGHT_ARROW = "right_arrow",
34
- EXPAND = "expand"
43
+ EXPAND = "expand",
44
+ DONE = "done",
45
+ NOT_DONE = "not_done"
35
46
  }
36
47
  declare enum ColorVariants {
37
48
  RED = "#FF7E71",
@@ -70,52 +81,54 @@ type TicketComment = {
70
81
  emojis?: string[];
71
82
  };
72
83
 
73
- type BadgeType = 'fire' | 'insight' | string;
84
+ type BadgeType = "fire" | "insight" | string;
74
85
  interface PreviewBadgeData {
75
86
  type: BadgeType;
76
87
  label?: string;
77
88
  }
78
- type Props$a = {
89
+ type Props$Q = {
79
90
  eventID: string;
80
91
  onSelected?: (eventID: string) => void;
81
92
  selected?: boolean;
82
93
  onChecked?: (eventID: string) => void;
83
94
  checked?: boolean;
95
+ onBulkChecked?: (eventID: string) => void;
96
+ bulkChecked?: boolean;
84
97
  service?: IntegrationService;
85
98
  subjectLine?: string;
86
99
  body?: string;
87
100
  sender?: string;
88
101
  source?: string;
89
102
  date?: Date;
90
- onClickGoToSource?: (() => void) | undefined;
103
+ onClickGoToSource?: () => void;
91
104
  eventCategory?: string;
92
105
  read?: boolean;
93
106
  overrideItems?: string[];
94
107
  eventBadges?: PreviewBadgeData[];
95
108
  onOverride?: (eventID: string, selectedItem: string) => void;
96
109
  };
97
- declare function PreviewCard({ eventID, onSelected, selected, onChecked, checked, service, subjectLine, body, sender, source, date, onClickGoToSource, eventCategory, read, overrideItems, eventBadges, onOverride, }: Props$a): react_jsx_runtime.JSX.Element;
110
+ declare function PreviewCard({ eventID, onSelected, selected, onChecked, checked: checkedProp, onBulkChecked, bulkChecked: bulkCheckedProp, service, subjectLine, body, sender, source, date, onClickGoToSource, eventCategory, read, eventBadges, onOverride, }: Props$Q): react_jsx_runtime.JSX.Element;
98
111
 
99
112
  type NavButtonKey = "queue" | "account" | "logout";
100
113
  type NavButtonConfig$1 = {
101
114
  active?: boolean;
102
115
  onClick?: () => void;
103
116
  };
104
- type Props$9 = {
117
+ type Props$P = {
105
118
  buttons?: Partial<Record<NavButtonKey, NavButtonConfig$1>>;
106
119
  };
107
- declare function NavBar({ buttons }: Props$9): react_jsx_runtime.JSX.Element;
120
+ declare function NavBar({ buttons }: Props$P): react_jsx_runtime.JSX.Element;
108
121
 
109
- type Props$8 = {
122
+ type Props$O = {
110
123
  eventType?: EventType;
111
124
  eventData?: EventGroup[];
112
125
  groupUrgency?: UrgencyLevel;
113
126
  groupUrgencyText?: string;
114
127
  groupSummary?: string;
115
128
  };
116
- declare function EventCard({ eventType, eventData, groupUrgency, groupUrgencyText, groupSummary, }: Props$8): react_jsx_runtime.JSX.Element;
129
+ declare function EventCard({ eventType, eventData, groupUrgency, groupUrgencyText, groupSummary, }: Props$O): react_jsx_runtime.JSX.Element;
117
130
 
118
- type Props$7 = {
131
+ type Props$N = {
119
132
  subjectLine?: string;
120
133
  to?: string;
121
134
  date?: string;
@@ -125,9 +138,9 @@ type Props$7 = {
125
138
  attachments?: string;
126
139
  body?: string;
127
140
  };
128
- declare function EmailBody({ subjectLine, to, date, from, CC, BCC, attachments, body, }: Props$7): react_jsx_runtime.JSX.Element;
141
+ declare function EmailBody({ subjectLine, to, date, from, CC, BCC, attachments, body, }: Props$N): react_jsx_runtime.JSX.Element;
129
142
 
130
- type Props$6 = {
143
+ type Props$M = {
131
144
  messages?: ChatData[];
132
145
  };
133
146
  type ChatData = {
@@ -141,9 +154,9 @@ type ChatData = {
141
154
  images?: string[];
142
155
  emojis?: string[];
143
156
  };
144
- declare function ChatBody({ messages }: Props$6): react_jsx_runtime.JSX.Element;
157
+ declare function ChatBody({ messages }: Props$M): react_jsx_runtime.JSX.Element;
145
158
 
146
- type Props$5 = {
159
+ type Props$L = {
147
160
  issueNumber?: string;
148
161
  notification?: string;
149
162
  project?: string;
@@ -158,13 +171,13 @@ type Props$5 = {
158
171
  description?: string;
159
172
  comments?: TicketComment[];
160
173
  };
161
- declare function TicketBody({ issueNumber, notification, project, task, dueDate, startDate, assignees, reporter, team, location, related, description, comments, }: Props$5): react_jsx_runtime.JSX.Element;
174
+ declare function TicketBody({ issueNumber, notification, project, task, dueDate, startDate, assignees, reporter, team, location, related, description, comments, }: Props$L): react_jsx_runtime.JSX.Element;
162
175
 
163
176
  type SearchResult = {
164
177
  label: string;
165
178
  count: number;
166
179
  };
167
- type Props$4 = {
180
+ type Props$K = {
168
181
  loading?: boolean;
169
182
  results?: SearchResult[];
170
183
  initialText?: string;
@@ -172,30 +185,44 @@ type Props$4 = {
172
185
  /** Optional debounce for onUpdate calls (ms). Defaults to 250ms. */
173
186
  debounceMs?: number;
174
187
  };
175
- declare function SearchBar({ loading, results, initialText, onUpdate, debounceMs, }: Props$4): react_jsx_runtime.JSX.Element;
188
+ declare function SearchBar({ loading, results, initialText, onUpdate, debounceMs, }: Props$K): react_jsx_runtime.JSX.Element;
176
189
 
177
- type FilterButtonKey = "fires" | "insights" | "unread" | "done" | "more" | IntegrationService;
190
+ type FilterButtonKey = FilterCategory | IntegrationService | MoreFilter;
178
191
  type NavButtonConfig = {
179
192
  active?: boolean;
180
193
  onClick?: () => void;
181
194
  disabled?: boolean;
182
195
  count?: string | number;
183
196
  };
184
- type Props$3 = {
197
+ type FilterBarProps = {
185
198
  buttons?: Partial<Record<FilterButtonKey, NavButtonConfig>>;
186
199
  };
187
- declare function FilterBar({ buttons }: Props$3): react_jsx_runtime.JSX.Element;
200
+ declare function FilterBar({ buttons }: FilterBarProps): react_jsx_runtime.JSX.Element;
188
201
 
189
- type IconSize = 16 | 20 | 24 | 36;
202
+ type BulkAction = {
203
+ label: string;
204
+ icon: React.ReactNode;
205
+ onClick?: () => void;
206
+ disabled?: boolean;
207
+ };
208
+ type Props$J = {
209
+ totalMessages?: number;
210
+ selectedCount?: number;
211
+ onSelectAll?: (selected: boolean) => void;
212
+ actions?: BulkAction[];
213
+ };
214
+ declare function BulkActions({ totalMessages, selectedCount: selectedCountProp, onSelectAll, actions, }: Props$J): react_jsx_runtime.JSX.Element;
190
215
 
191
- type Props$2 = {
192
- size?: IconSize;
216
+ type IconSize$F = 16 | 20 | 24 | 36;
217
+
218
+ type Props$I = {
219
+ size?: IconSize$F;
193
220
  className?: string;
194
221
  service?: IntegrationService;
195
222
  };
196
- declare function BrandIcon({ size, className, service }: Props$2): react_jsx_runtime.JSX.Element;
223
+ declare function BrandIcon({ size, className, service }: Props$I): react_jsx_runtime.JSX.Element;
197
224
 
198
- type Props$1 = {
225
+ type Props$H = {
199
226
  isOpen: boolean;
200
227
  onClose: () => void;
201
228
  children: ReactNode;
@@ -203,10 +230,10 @@ type Props$1 = {
203
230
  disableBackdropClick?: boolean;
204
231
  disableEscapeKey?: boolean;
205
232
  };
206
- declare function Modal({ isOpen, onClose, children, className, disableBackdropClick, disableEscapeKey, }: Props$1): React.ReactPortal | null;
233
+ declare function Modal({ isOpen, onClose, children, className, disableBackdropClick, disableEscapeKey, }: Props$H): React$1.ReactPortal | null;
207
234
 
208
235
  type ConfirmationVariant = "danger" | "primary" | "warning";
209
- type Props = {
236
+ type Props$G = {
210
237
  isOpen: boolean;
211
238
  onClose: () => void;
212
239
  onConfirm: () => void;
@@ -217,7 +244,7 @@ type Props = {
217
244
  variant?: ConfirmationVariant;
218
245
  children?: ReactNode;
219
246
  };
220
- declare function ConfirmationModal({ isOpen, onClose, onConfirm, title, message, confirmLabel, cancelLabel, variant, children, }: Props): react_jsx_runtime.JSX.Element;
247
+ declare function ConfirmationModal({ isOpen, onClose, onConfirm, title, message, confirmLabel, cancelLabel, variant, children, }: Props$G): react_jsx_runtime.JSX.Element;
221
248
 
222
249
  interface AccountInfoFieldProps {
223
250
  label: string;
@@ -339,4 +366,338 @@ type Event = {
339
366
 
340
367
  declare const fakeMessages: ChatData[];
341
368
 
342
- export { AccountInfoField, AccountInfoSection, AccountIntegrationCard, AccountIntegrationCardItem, type Attachment, BaseIconName, BrandIcon, type CalendarData, ChatBody, type ChatData, ColorVariants, ConfirmationModal, type ConfirmationVariant, EmailBody, type EmailData, type Event, EventCard, type EventData, type EventGroup, EventState, type EventSummaryParts, EventType, type ExternalPerson, FilterBar, type FilterButtonKey, type IconSize, IntegrationService, type MessageData, Modal, NavBar, PreviewCard, SearchBar, type SearchResult, TicketBody, type TicketComment, type TicketData, UrgencyLevel, fakeMessages };
369
+ type IconSize$E = 16 | 20 | 24 | 36;
370
+ type Props$F = {
371
+ size?: IconSize$E;
372
+ color?: string;
373
+ fillColor?: string;
374
+ };
375
+ declare function AlertIcon({ size, color, fillColor, }: Props$F): react_jsx_runtime.JSX.Element;
376
+
377
+ type IconSize$D = 16 | 20 | 24 | 36;
378
+ type Props$E = {
379
+ size?: IconSize$D;
380
+ color?: string;
381
+ fillColor?: string;
382
+ };
383
+ declare function ArrowLeft({ size, color, fillColor, }: Props$E): react_jsx_runtime.JSX.Element;
384
+
385
+ type IconSize$C = 16 | 20 | 24 | 36;
386
+ type Props$D = {
387
+ size?: IconSize$C;
388
+ color?: string;
389
+ fillColor?: string;
390
+ };
391
+ declare function ArrowRight({ size, color, fillColor, }: Props$D): react_jsx_runtime.JSX.Element;
392
+
393
+ type IconSize$B = 16 | 20 | 24 | 36;
394
+ type Props$C = {
395
+ size?: IconSize$B;
396
+ color?: string;
397
+ fillColor?: string;
398
+ };
399
+ declare function BullHorn({ size, color, fillColor, }: Props$C): react_jsx_runtime.JSX.Element;
400
+
401
+ type IconSize$A = 16 | 20 | 24 | 36;
402
+ type Props$B = {
403
+ size?: IconSize$A;
404
+ color?: string;
405
+ fillColor?: string;
406
+ };
407
+ declare function Calc({ size, color, fillColor, }: Props$B): react_jsx_runtime.JSX.Element;
408
+
409
+ type IconSize$z = 16 | 20 | 24 | 36;
410
+ type Props$A = {
411
+ size?: IconSize$z;
412
+ color?: string;
413
+ fillColor?: string;
414
+ };
415
+ declare function ChatNew({ size, color, fillColor, }: Props$A): react_jsx_runtime.JSX.Element;
416
+
417
+ type IconSize$y = 16 | 20 | 24 | 36;
418
+ type Props$z = {
419
+ size?: IconSize$y;
420
+ color?: string;
421
+ fillColor?: string;
422
+ };
423
+ declare function Check({ size, color, fillColor, }: Props$z): react_jsx_runtime.JSX.Element;
424
+
425
+ type IconSize$x = 16 | 20 | 24 | 36;
426
+ type Props$y = {
427
+ size?: IconSize$x;
428
+ color?: string;
429
+ fillColor?: string;
430
+ };
431
+ declare function CheckBox({ size, color, fillColor }: Props$y): react_jsx_runtime.JSX.Element;
432
+
433
+ type IconSize$w = 16 | 20 | 24 | 36;
434
+ type Props$x = {
435
+ size?: IconSize$w;
436
+ color?: string;
437
+ fillColor?: string;
438
+ };
439
+ declare function ChevronDown({ size, color, fillColor, }: Props$x): react_jsx_runtime.JSX.Element;
440
+
441
+ type IconSize$v = 16 | 20 | 24 | 36;
442
+ type Props$w = {
443
+ size?: IconSize$v;
444
+ color?: string;
445
+ fillColor?: string;
446
+ };
447
+ declare function ChevronLeft({ size, color, fillColor, }: Props$w): react_jsx_runtime.JSX.Element;
448
+
449
+ type IconSize$u = 16 | 20 | 24 | 36;
450
+ type Props$v = {
451
+ size?: IconSize$u;
452
+ color?: string;
453
+ fillColor?: string;
454
+ };
455
+ declare function ChevronRight({ size, color, fillColor, }: Props$v): react_jsx_runtime.JSX.Element;
456
+
457
+ type IconSize$t = 16 | 20 | 24 | 36;
458
+ type Props$u = {
459
+ size?: IconSize$t;
460
+ color?: string;
461
+ fillColor?: string;
462
+ };
463
+ declare function ChevronUp({ size, color, fillColor, }: Props$u): react_jsx_runtime.JSX.Element;
464
+
465
+ type IconSize$s = 16 | 20 | 24 | 36;
466
+ type Props$t = {
467
+ size?: IconSize$s;
468
+ color?: string;
469
+ fillColor?: string;
470
+ };
471
+ declare function CircleCheck({ size, color, fillColor, }: Props$t): react_jsx_runtime.JSX.Element;
472
+
473
+ type IconSize$r = 16 | 20 | 24 | 36;
474
+ type Props$s = {
475
+ size?: IconSize$r;
476
+ color?: string;
477
+ fillColor?: string;
478
+ };
479
+ declare function CircleX({ size, color, fillColor, }: Props$s): react_jsx_runtime.JSX.Element;
480
+
481
+ type IconSize$q = 16 | 20 | 24 | 36;
482
+ type Props$r = {
483
+ size?: IconSize$q;
484
+ color?: string;
485
+ fillColor?: string;
486
+ };
487
+ declare function Clipboard({ size, color, fillColor, }: Props$r): react_jsx_runtime.JSX.Element;
488
+
489
+ type IconSize$p = 16 | 20 | 24 | 36;
490
+ type Props$q = {
491
+ size?: IconSize$p;
492
+ color?: string;
493
+ fillColor?: string;
494
+ };
495
+ declare function ClipboardCheck({ size, color, fillColor, }: Props$q): react_jsx_runtime.JSX.Element;
496
+
497
+ type IconSize$o = 16 | 20 | 24 | 36;
498
+ type Props$p = {
499
+ size?: IconSize$o;
500
+ color?: string;
501
+ };
502
+ declare function Close({ size, color }: Props$p): react_jsx_runtime.JSX.Element;
503
+
504
+ type IconSize$n = 16 | 20 | 24 | 36;
505
+ type Props$o = {
506
+ size?: IconSize$n;
507
+ color?: string;
508
+ fillColor?: string;
509
+ };
510
+ declare function CrossDiag({ size, color, fillColor, }: Props$o): react_jsx_runtime.JSX.Element;
511
+
512
+ type IconSize$m = 16 | 20 | 24 | 36;
513
+ type Props$n = {
514
+ size?: IconSize$m;
515
+ color?: string;
516
+ fillColor?: string;
517
+ };
518
+ declare function Dash({ size, color, fillColor, }: Props$n): react_jsx_runtime.JSX.Element;
519
+
520
+ type IconSize$l = 16 | 20 | 24 | 36;
521
+ type Props$m = {
522
+ size?: IconSize$l;
523
+ color?: string;
524
+ fillColor?: string;
525
+ };
526
+ declare function Done({ size, color, fillColor, }: Props$m): react_jsx_runtime.JSX.Element;
527
+
528
+ type IconSize$k = 16 | 20 | 24 | 36;
529
+ type Props$l = {
530
+ size?: IconSize$k;
531
+ color?: string;
532
+ fillColor?: string;
533
+ };
534
+ declare function Download({ size, color, fillColor, }: Props$l): react_jsx_runtime.JSX.Element;
535
+
536
+ type IconSize$j = 16 | 20 | 24 | 36;
537
+ type Props$k = {
538
+ size?: IconSize$j;
539
+ color?: string;
540
+ fillColor?: string;
541
+ };
542
+ declare function ElipsesHori({ size, color, fillColor, }: Props$k): react_jsx_runtime.JSX.Element;
543
+
544
+ type IconSize$i = 16 | 20 | 24 | 36;
545
+ type Props$j = {
546
+ size?: IconSize$i;
547
+ color?: string;
548
+ fillColor?: string;
549
+ };
550
+ declare function ElipsesVert({ size, color, fillColor, }: Props$j): react_jsx_runtime.JSX.Element;
551
+
552
+ type IconSize$h = 16 | 20 | 24 | 36;
553
+ type Props$i = {
554
+ size?: IconSize$h;
555
+ color?: string;
556
+ fillColor?: string;
557
+ };
558
+ declare function Expand({ size, color, fillColor, }: Props$i): react_jsx_runtime.JSX.Element;
559
+
560
+ type IconSize$g = 16 | 20 | 24 | 36;
561
+ type Props$h = {
562
+ size?: IconSize$g;
563
+ color?: string;
564
+ fillColor?: string;
565
+ };
566
+ declare function ExternalLink({ size, color, fillColor, }: Props$h): react_jsx_runtime.JSX.Element;
567
+
568
+ type IconSize$f = 16 | 20 | 24 | 36;
569
+ type Props$g = {
570
+ size?: IconSize$f;
571
+ color?: string;
572
+ fillColor?: string;
573
+ };
574
+ declare function Gear({ size, color, fillColor, }: Props$g): react_jsx_runtime.JSX.Element;
575
+
576
+ type IconSize$e = 16 | 20 | 24 | 36;
577
+ type Props$f = {
578
+ size?: IconSize$e;
579
+ color?: string;
580
+ fillColor?: string;
581
+ };
582
+ declare function Hash({ size, color, fillColor, }: Props$f): react_jsx_runtime.JSX.Element;
583
+
584
+ type IconSize$d = 16 | 20 | 24 | 36;
585
+ type Props$e = {
586
+ size?: IconSize$d;
587
+ color?: string;
588
+ fillColor?: string;
589
+ };
590
+ declare function InsightsIcon({ size, color, fillColor, }: Props$e): react_jsx_runtime.JSX.Element;
591
+
592
+ type IconSize$c = 16 | 20 | 24 | 36;
593
+ type Props$d = {
594
+ size?: IconSize$c;
595
+ color?: string;
596
+ fillColor?: string;
597
+ };
598
+ declare function Loading({ size, color, fillColor, }: Props$d): react_jsx_runtime.JSX.Element;
599
+
600
+ type IconSize$b = 16 | 20 | 24 | 36;
601
+ type Props$c = {
602
+ size?: IconSize$b;
603
+ color?: string;
604
+ fillColor?: string;
605
+ };
606
+ declare function Login({ size, color, fillColor, }: Props$c): react_jsx_runtime.JSX.Element;
607
+
608
+ type IconSize$a = 16 | 20 | 24 | 36;
609
+ type Props$b = {
610
+ size?: IconSize$a;
611
+ color?: string;
612
+ fillColor?: string;
613
+ };
614
+ declare function Logout({ size, color, fillColor, }: Props$b): react_jsx_runtime.JSX.Element;
615
+
616
+ type IconSize$9 = 16 | 20 | 24 | 36;
617
+ type Props$a = {
618
+ size?: IconSize$9;
619
+ color?: string;
620
+ fillColor?: string;
621
+ };
622
+ declare function Mail({ size, color, fillColor, }: Props$a): react_jsx_runtime.JSX.Element;
623
+
624
+ type IconSize$8 = 16 | 20 | 24 | 36;
625
+ type Props$9 = {
626
+ size?: IconSize$8;
627
+ color?: string;
628
+ fillColor?: string;
629
+ };
630
+ declare function NotDone({ size, color, fillColor, }: Props$9): react_jsx_runtime.JSX.Element;
631
+
632
+ type IconSize$7 = 16 | 20 | 24 | 36;
633
+ type Props$8 = {
634
+ size?: IconSize$7;
635
+ color?: string;
636
+ fillColor?: string;
637
+ };
638
+ declare function PlusLarge({ size, color, fillColor, }: Props$8): react_jsx_runtime.JSX.Element;
639
+
640
+ type IconSize$6 = 16 | 20 | 24 | 36;
641
+ type Props$7 = {
642
+ size?: IconSize$6;
643
+ color?: string;
644
+ fillColor?: string;
645
+ };
646
+ declare function PlusSmall({ size, color, fillColor, }: Props$7): react_jsx_runtime.JSX.Element;
647
+
648
+ type IconSize$5 = 16 | 20 | 24 | 36;
649
+ type Props$6 = {
650
+ size?: IconSize$5;
651
+ color?: string;
652
+ fillColor?: string;
653
+ };
654
+ declare function Queue({ size, color, fillColor, }: Props$6): react_jsx_runtime.JSX.Element;
655
+
656
+ type IconSize$4 = 16 | 20 | 24 | 36;
657
+ type Props$5 = {
658
+ size?: IconSize$4;
659
+ color?: string;
660
+ fillColor?: string;
661
+ };
662
+ declare function Search({ size, color, fillColor, }: Props$5): react_jsx_runtime.JSX.Element;
663
+
664
+ type IconSize$3 = 16 | 20 | 24 | 36;
665
+ type Props$4 = {
666
+ size?: IconSize$3;
667
+ color?: string;
668
+ fillColor?: string;
669
+ };
670
+ declare function Settings({ size, color, fillColor, }: Props$4): react_jsx_runtime.JSX.Element;
671
+
672
+ type IconSize$2 = 16 | 20 | 24 | 36;
673
+ type Props$3 = {
674
+ size?: IconSize$2;
675
+ color?: string;
676
+ fillColor?: string;
677
+ };
678
+ declare function ThumbDown({ size, color, fillColor, }: Props$3): react_jsx_runtime.JSX.Element;
679
+
680
+ type IconSize$1 = 16 | 20 | 24 | 36;
681
+ type Props$2 = {
682
+ size?: IconSize$1;
683
+ color?: string;
684
+ fillColor?: string;
685
+ };
686
+ declare function ThumbUp({ size, color, fillColor, }: Props$2): react_jsx_runtime.JSX.Element;
687
+
688
+ type IconSize = 16 | 20 | 24 | 36;
689
+ type Props$1 = {
690
+ size?: IconSize;
691
+ color?: string;
692
+ fillColor?: string;
693
+ };
694
+ declare function Zap({ size, color, fillColor, }: Props$1): react_jsx_runtime.JSX.Element;
695
+
696
+ type Props = {
697
+ size?: number;
698
+ icon?: BaseIconName.FIRE | BaseIconName.ALERT;
699
+ variant?: ColorVariants;
700
+ };
701
+ declare function CategoryIcon({ size, icon, variant }: Props): react_jsx_runtime.JSX.Element;
702
+
703
+ export { AccountInfoField, AccountInfoSection, AccountIntegrationCard, AccountIntegrationCardItem, AlertIcon, ArrowLeft, ArrowRight, type Attachment, BaseIconName, BrandIcon, type BulkAction, BulkActions, BullHorn, Calc, type CalendarData, CategoryIcon, ChatBody, type ChatData, ChatNew, Check, CheckBox, ChevronDown, ChevronLeft, ChevronRight, ChevronUp, CircleCheck, CircleX, Clipboard, ClipboardCheck, Close, ColorVariants, ConfirmationModal, type ConfirmationVariant, CrossDiag, Dash, Done, Download, ElipsesHori, ElipsesVert, EmailBody, type EmailData, type Event, EventCard, type EventData, type EventGroup, EventState, type EventSummaryParts, EventType, Expand, ExternalLink, type ExternalPerson, FilterBar, type FilterButtonKey, FilterCategory, Gear, Hash, type IconSize$F as IconSize, InsightsIcon, IntegrationService, Loading, Login, Logout, Mail, type MessageData, Modal, MoreFilter, NavBar, NotDone, PlusLarge, PlusSmall, PreviewCard, Queue, Search, SearchBar, type SearchResult, Settings, ThumbDown, ThumbUp, TicketBody, type TicketComment, type TicketData, UrgencyLevel, Zap, fakeMessages };