@optigrit/optigrit-ui 0.0.16 → 0.0.18

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.
@@ -1,5 +1,5 @@
1
1
  import * as React$1 from 'react';
2
- import React__default, { ButtonHTMLAttributes, ReactNode, HTMLAttributes, RefObject, TableHTMLAttributes } from 'react';
2
+ import React__default, { ButtonHTMLAttributes, ReactNode, HTMLAttributes, RefObject, TableHTMLAttributes, SVGProps } from 'react';
3
3
  import * as react_jsx_runtime from 'react/jsx-runtime';
4
4
  import { P as PopoverProps, a as InputProps, S as ShowWithAnimationProps } from '../types-BSufqQYT.js';
5
5
 
@@ -44,14 +44,14 @@ declare function Tooltip(props: TooltipProps): react_jsx_runtime.JSX.Element;
44
44
 
45
45
  type InputFieldProps = {
46
46
  value?: string;
47
- labelBehavior?: 'fixed' | 'float';
47
+ labelBehavior?: "fixed" | "float";
48
48
  errorColor?: string;
49
49
  validateValue?: (value: string) => string | null;
50
50
  onChangeValue?: (value: string) => void;
51
51
  containerProps?: HTMLAttributes<HTMLDivElement> & {
52
52
  ref?: RefObject<HTMLDivElement | null>;
53
53
  };
54
- } & Omit<InputProps, 'value'>;
54
+ } & Omit<InputProps, "value">;
55
55
  declare function InputField(props: InputFieldProps): react_jsx_runtime.JSX.Element;
56
56
 
57
57
  type OPTION$1 = {
@@ -87,6 +87,42 @@ interface SearchBarProps extends Omit<InputProps, 'value' | 'defaultValue'> {
87
87
  }
88
88
  declare const SearchBar: React__default.ForwardRefExoticComponent<SearchBarProps & React__default.RefAttributes<HTMLInputElement>>;
89
89
 
90
+ type Country = {
91
+ name: string;
92
+ iso2: string;
93
+ dialCode: string;
94
+ format?: string;
95
+ maxLength?: number;
96
+ };
97
+
98
+ type TelInputValue = {
99
+ phoneNumber: string;
100
+ dialCode: string;
101
+ countryCode: string;
102
+ fullNumber: string;
103
+ };
104
+ type TelInputProps = {
105
+ value?: string;
106
+ defaultCountry?: string;
107
+ country?: string;
108
+ onChangeValue?: (value: TelInputValue) => void;
109
+ onCountryChange?: (country: Country) => void;
110
+ validateValue?: (phone: string, country: Country) => string | null;
111
+ searchableCountry?: boolean;
112
+ allowedCountries?: string[];
113
+ countryDropdownPosition?: PopoverProps['position'];
114
+ disableCountrySelect?: boolean;
115
+ } & Omit<InputFieldProps, 'value' | 'type' | 'startIcon' | 'onChangeValue' | 'validateValue'>;
116
+ declare function TelInput(props: TelInputProps): react_jsx_runtime.JSX.Element;
117
+
118
+ declare function sanitizePhoneNumber(phone: string): string;
119
+ declare function isValidPhoneChars(phone: string): boolean;
120
+ declare function isValidPhoneLength(phone: string, country?: Country): {
121
+ valid: boolean;
122
+ error?: string;
123
+ };
124
+ declare function validatePhoneNumber(phone: string, country?: Country): string | null;
125
+
90
126
  type TabListProps = {
91
127
  activeTabValue: string;
92
128
  onChangeActiveTabValue: (value: string) => void;
@@ -259,6 +295,8 @@ type AlertOptions = {
259
295
 
260
296
  declare const handleAlert: (title: React__default.ReactNode, type?: AlertType, options?: AlertOptions) => void;
261
297
 
298
+ declare const handleError: () => void;
299
+
262
300
  interface CardProps extends React__default.HTMLAttributes<HTMLDivElement> {
263
301
  }
264
302
  declare const Card: React__default.ForwardRefExoticComponent<CardProps & React__default.RefAttributes<HTMLDivElement>>;
@@ -281,4 +319,828 @@ interface CardFooterProps extends React__default.HTMLAttributes<HTMLDivElement>
281
319
  }
282
320
  declare const CardFooter: React__default.ForwardRefExoticComponent<CardFooterProps & React__default.RefAttributes<HTMLDivElement>>;
283
321
 
284
- export { Button, type ButtonColor, type ButtonProps, type ButtonRoundness, type ButtonSize, type ButtonVariant, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, Carousel, type CarouselItem, type CarouselProps, type Column, DataTable, type DataTableProps, Dialog, DialogContent, DialogFooter, DialogHeader, type DialogProps, Drawer, DrawerContent, DrawerFooter, DrawerHeader, type DrawerProps, IconButton, type IconButtonProps, InputField, type InputFieldProps, MultiSelect, type MultiSelectProps, SearchBar, type SearchBarProps, Select, type SelectProps, Separator, type SeparatorProps, TabList, type TabListProps, TabPanel, type TabPanelProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, type TablePaginationConfig, type TableProps, TableRow, type TableRowProps, Tooltip, type TooltipProps, handleAlert };
322
+ declare function FlagAD(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
323
+
324
+ declare function FlagAE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
325
+
326
+ declare function FlagAF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
327
+
328
+ declare function FlagAG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
329
+
330
+ declare function FlagAI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
331
+
332
+ declare function FlagAL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
333
+
334
+ declare function FlagAM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
335
+
336
+ declare function FlagAO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
337
+
338
+ declare function FlagAQ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
339
+
340
+ declare function FlagAR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
341
+
342
+ declare function FlagArab(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
343
+
344
+ declare function FlagAS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
345
+
346
+ declare function FlagAsean(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
347
+
348
+ declare function FlagAT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
349
+
350
+ declare function FlagAU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
351
+
352
+ declare function FlagAW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
353
+
354
+ declare function FlagAX(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
355
+
356
+ declare function FlagAZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
357
+
358
+ declare function FlagBA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
359
+
360
+ declare function FlagBB(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
361
+
362
+ declare function FlagBD(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
363
+
364
+ declare function FlagBE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
365
+
366
+ declare function FlagBF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
367
+
368
+ declare function FlagBG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
369
+
370
+ declare function FlagBH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
371
+
372
+ declare function FlagBI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
373
+
374
+ declare function FlagBJ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
375
+
376
+ declare function FlagBL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
377
+
378
+ declare function FlagBM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
379
+
380
+ declare function FlagBN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
381
+
382
+ declare function FlagBO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
383
+
384
+ declare function FlagBQ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
385
+
386
+ declare function FlagBR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
387
+
388
+ declare function FlagBS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
389
+
390
+ declare function FlagBT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
391
+
392
+ declare function FlagBV(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
393
+
394
+ declare function FlagBW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
395
+
396
+ declare function FlagBY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
397
+
398
+ declare function FlagBZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
399
+
400
+ declare function FlagCA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
401
+
402
+ declare function FlagCC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
403
+
404
+ declare function FlagCD(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
405
+
406
+ declare function FlagCefta(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
407
+
408
+ declare function FlagCF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
409
+
410
+ declare function FlagCG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
411
+
412
+ declare function FlagCH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
413
+
414
+ declare function FlagCI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
415
+
416
+ declare function FlagCK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
417
+
418
+ declare function FlagCL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
419
+
420
+ declare function FlagCM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
421
+
422
+ declare function FlagCN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
423
+
424
+ declare function FlagCO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
425
+
426
+ declare function FlagCP(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
427
+
428
+ declare function FlagCR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
429
+
430
+ declare function FlagCU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
431
+
432
+ declare function FlagCV(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
433
+
434
+ declare function FlagCW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
435
+
436
+ declare function FlagCX(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
437
+
438
+ declare function FlagCY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
439
+
440
+ declare function FlagCZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
441
+
442
+ declare function FlagDE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
443
+
444
+ declare function FlagDG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
445
+
446
+ declare function FlagDJ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
447
+
448
+ declare function FlagDK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
449
+
450
+ declare function FlagDM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
451
+
452
+ declare function FlagDO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
453
+
454
+ declare function FlagDZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
455
+
456
+ declare function FlagEAC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
457
+
458
+ declare function FlagEC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
459
+
460
+ declare function FlagEE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
461
+
462
+ declare function FlagEG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
463
+
464
+ declare function FlagEH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
465
+
466
+ declare function FlagER(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
467
+
468
+ declare function FlagES(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
469
+
470
+ declare function FlagESCT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
471
+
472
+ declare function FlagESGA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
473
+
474
+ declare function FlagESPV(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
475
+
476
+ declare function FlagET(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
477
+
478
+ declare function FlagEU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
479
+
480
+ declare function FlagFI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
481
+
482
+ declare function FlagFJ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
483
+
484
+ declare function FlagFK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
485
+
486
+ declare function FlagFM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
487
+
488
+ declare function FlagFO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
489
+
490
+ declare function FlagFR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
491
+
492
+ declare function FlagGA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
493
+
494
+ declare function FlagGB(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
495
+
496
+ declare function FlagGBENG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
497
+
498
+ declare function FlagGBNIR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
499
+
500
+ declare function FlagGBSCT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
501
+
502
+ declare function FlagGBWLS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
503
+
504
+ declare function FlagGD(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
505
+
506
+ declare function FlagGE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
507
+
508
+ declare function FlagGF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
509
+
510
+ declare function FlagGG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
511
+
512
+ declare function FlagGH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
513
+
514
+ declare function FlagGI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
515
+
516
+ declare function FlagGL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
517
+
518
+ declare function FlagGM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
519
+
520
+ declare function FlagGN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
521
+
522
+ declare function FlagGP(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
523
+
524
+ declare function FlagGQ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
525
+
526
+ declare function FlagGR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
527
+
528
+ declare function FlagGS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
529
+
530
+ declare function FlagGT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
531
+
532
+ declare function FlagGU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
533
+
534
+ declare function FlagGW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
535
+
536
+ declare function FlagGY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
537
+
538
+ declare function FlagHK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
539
+
540
+ declare function FlagHM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
541
+
542
+ declare function FlagHN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
543
+
544
+ declare function FlagHR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
545
+
546
+ declare function FlagHT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
547
+
548
+ declare function FlagHU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
549
+
550
+ declare function FlagIC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
551
+
552
+ declare function FlagID(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
553
+
554
+ declare function FlagIE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
555
+
556
+ declare function FlagIL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
557
+
558
+ declare function FlagIM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
559
+
560
+ declare function FlagIN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
561
+
562
+ declare function FlagIO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
563
+
564
+ declare function FlagIQ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
565
+
566
+ declare function FlagIR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
567
+
568
+ declare function FlagIS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
569
+
570
+ declare function FlagIT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
571
+
572
+ declare function FlagJE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
573
+
574
+ declare function FlagJM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
575
+
576
+ declare function FlagJO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
577
+
578
+ declare function FlagJP(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
579
+
580
+ declare function FlagKE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
581
+
582
+ declare function FlagKG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
583
+
584
+ declare function FlagKH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
585
+
586
+ declare function FlagKI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
587
+
588
+ declare function FlagKM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
589
+
590
+ declare function FlagKN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
591
+
592
+ declare function FlagKP(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
593
+
594
+ declare function FlagKR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
595
+
596
+ declare function FlagKW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
597
+
598
+ declare function FlagKY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
599
+
600
+ declare function FlagKZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
601
+
602
+ declare function FlagLA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
603
+
604
+ declare function FlagLB(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
605
+
606
+ declare function FlagLC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
607
+
608
+ declare function FlagLI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
609
+
610
+ declare function FlagLK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
611
+
612
+ declare function FlagLR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
613
+
614
+ declare function FlagLS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
615
+
616
+ declare function FlagLT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
617
+
618
+ declare function FlagLU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
619
+
620
+ declare function FlagLV(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
621
+
622
+ declare function FlagLY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
623
+
624
+ declare function FlagMA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
625
+
626
+ declare function FlagMC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
627
+
628
+ declare function FlagMD(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
629
+
630
+ declare function FlagME(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
631
+
632
+ declare function FlagMF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
633
+
634
+ declare function FlagMG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
635
+
636
+ declare function FlagMH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
637
+
638
+ declare function FlagMK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
639
+
640
+ declare function FlagML(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
641
+
642
+ declare function FlagMM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
643
+
644
+ declare function FlagMN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
645
+
646
+ declare function FlagMO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
647
+
648
+ declare function FlagMP(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
649
+
650
+ declare function FlagMQ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
651
+
652
+ declare function FlagMR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
653
+
654
+ declare function FlagMS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
655
+
656
+ declare function FlagMT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
657
+
658
+ declare function FlagMU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
659
+
660
+ declare function FlagMV(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
661
+
662
+ declare function FlagMW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
663
+
664
+ declare function FlagMX(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
665
+
666
+ declare function FlagMY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
667
+
668
+ declare function FlagMZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
669
+
670
+ declare function FlagNA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
671
+
672
+ declare function FlagNC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
673
+
674
+ declare function FlagNE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
675
+
676
+ declare function FlagNF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
677
+
678
+ declare function FlagNG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
679
+
680
+ declare function FlagNI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
681
+
682
+ declare function FlagNL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
683
+
684
+ declare function FlagNO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
685
+
686
+ declare function FlagNP(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
687
+
688
+ declare function FlagNR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
689
+
690
+ declare function FlagNU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
691
+
692
+ declare function FlagNZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
693
+
694
+ declare function FlagOM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
695
+
696
+ declare function FlagPA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
697
+
698
+ declare function FlagPC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
699
+
700
+ declare function FlagPE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
701
+
702
+ declare function FlagPF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
703
+
704
+ declare function FlagPG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
705
+
706
+ declare function FlagPH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
707
+
708
+ declare function FlagPK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
709
+
710
+ declare function FlagPL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
711
+
712
+ declare function FlagPM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
713
+
714
+ declare function FlagPN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
715
+
716
+ declare function FlagPR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
717
+
718
+ declare function FlagPS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
719
+
720
+ declare function FlagPT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
721
+
722
+ declare function FlagPW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
723
+
724
+ declare function FlagPY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
725
+
726
+ declare function FlagQA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
727
+
728
+ declare function FlagRE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
729
+
730
+ declare function FlagRO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
731
+
732
+ declare function FlagRS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
733
+
734
+ declare function FlagRU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
735
+
736
+ declare function FlagRW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
737
+
738
+ declare function FlagSA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
739
+
740
+ declare function FlagSB(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
741
+
742
+ declare function FlagSC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
743
+
744
+ declare function FlagSD(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
745
+
746
+ declare function FlagSE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
747
+
748
+ declare function FlagSG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
749
+
750
+ declare function FlagSH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
751
+
752
+ declare function FlagSHAC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
753
+
754
+ declare function FlagSHHL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
755
+
756
+ declare function FlagSHTA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
757
+
758
+ declare function FlagSI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
759
+
760
+ declare function FlagSJ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
761
+
762
+ declare function FlagSK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
763
+
764
+ declare function FlagSL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
765
+
766
+ declare function FlagSM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
767
+
768
+ declare function FlagSN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
769
+
770
+ declare function FlagSO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
771
+
772
+ declare function FlagSR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
773
+
774
+ declare function FlagSS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
775
+
776
+ declare function FlagST(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
777
+
778
+ declare function FlagSV(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
779
+
780
+ declare function FlagSX(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
781
+
782
+ declare function FlagSY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
783
+
784
+ declare function FlagSZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
785
+
786
+ declare function FlagTC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
787
+
788
+ declare function FlagTD(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
789
+
790
+ declare function FlagTF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
791
+
792
+ declare function FlagTG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
793
+
794
+ declare function FlagTH(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
795
+
796
+ declare function FlagTJ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
797
+
798
+ declare function FlagTK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
799
+
800
+ declare function FlagTL(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
801
+
802
+ declare function FlagTM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
803
+
804
+ declare function FlagTN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
805
+
806
+ declare function FlagTO(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
807
+
808
+ declare function FlagTR(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
809
+
810
+ declare function FlagTT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
811
+
812
+ declare function FlagTV(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
813
+
814
+ declare function FlagTW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
815
+
816
+ declare function FlagTZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
817
+
818
+ declare function FlagUA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
819
+
820
+ declare function FlagUG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
821
+
822
+ declare function FlagUM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
823
+
824
+ declare function FlagUN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
825
+
826
+ declare function FlagUS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
827
+
828
+ declare function FlagUY(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
829
+
830
+ declare function FlagUZ(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
831
+
832
+ declare function FlagVA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
833
+
834
+ declare function FlagVC(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
835
+
836
+ declare function FlagVE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
837
+
838
+ declare function FlagVG(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
839
+
840
+ declare function FlagVI(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
841
+
842
+ declare function FlagVN(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
843
+
844
+ declare function FlagVU(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
845
+
846
+ declare function FlagWF(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
847
+
848
+ declare function FlagWS(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
849
+
850
+ declare function FlagXK(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
851
+
852
+ declare function FlagXX(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
853
+
854
+ declare function FlagYE(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
855
+
856
+ declare function FlagYT(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
857
+
858
+ declare function FlagZA(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
859
+
860
+ declare function FlagZM(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
861
+
862
+ declare function FlagZW(props: SVGProps<SVGSVGElement>): react_jsx_runtime.JSX.Element;
863
+
864
+ declare const Flags_FlagAD: typeof FlagAD;
865
+ declare const Flags_FlagAE: typeof FlagAE;
866
+ declare const Flags_FlagAF: typeof FlagAF;
867
+ declare const Flags_FlagAG: typeof FlagAG;
868
+ declare const Flags_FlagAI: typeof FlagAI;
869
+ declare const Flags_FlagAL: typeof FlagAL;
870
+ declare const Flags_FlagAM: typeof FlagAM;
871
+ declare const Flags_FlagAO: typeof FlagAO;
872
+ declare const Flags_FlagAQ: typeof FlagAQ;
873
+ declare const Flags_FlagAR: typeof FlagAR;
874
+ declare const Flags_FlagAS: typeof FlagAS;
875
+ declare const Flags_FlagAT: typeof FlagAT;
876
+ declare const Flags_FlagAU: typeof FlagAU;
877
+ declare const Flags_FlagAW: typeof FlagAW;
878
+ declare const Flags_FlagAX: typeof FlagAX;
879
+ declare const Flags_FlagAZ: typeof FlagAZ;
880
+ declare const Flags_FlagArab: typeof FlagArab;
881
+ declare const Flags_FlagAsean: typeof FlagAsean;
882
+ declare const Flags_FlagBA: typeof FlagBA;
883
+ declare const Flags_FlagBB: typeof FlagBB;
884
+ declare const Flags_FlagBD: typeof FlagBD;
885
+ declare const Flags_FlagBE: typeof FlagBE;
886
+ declare const Flags_FlagBF: typeof FlagBF;
887
+ declare const Flags_FlagBG: typeof FlagBG;
888
+ declare const Flags_FlagBH: typeof FlagBH;
889
+ declare const Flags_FlagBI: typeof FlagBI;
890
+ declare const Flags_FlagBJ: typeof FlagBJ;
891
+ declare const Flags_FlagBL: typeof FlagBL;
892
+ declare const Flags_FlagBM: typeof FlagBM;
893
+ declare const Flags_FlagBN: typeof FlagBN;
894
+ declare const Flags_FlagBO: typeof FlagBO;
895
+ declare const Flags_FlagBQ: typeof FlagBQ;
896
+ declare const Flags_FlagBR: typeof FlagBR;
897
+ declare const Flags_FlagBS: typeof FlagBS;
898
+ declare const Flags_FlagBT: typeof FlagBT;
899
+ declare const Flags_FlagBV: typeof FlagBV;
900
+ declare const Flags_FlagBW: typeof FlagBW;
901
+ declare const Flags_FlagBY: typeof FlagBY;
902
+ declare const Flags_FlagBZ: typeof FlagBZ;
903
+ declare const Flags_FlagCA: typeof FlagCA;
904
+ declare const Flags_FlagCC: typeof FlagCC;
905
+ declare const Flags_FlagCD: typeof FlagCD;
906
+ declare const Flags_FlagCF: typeof FlagCF;
907
+ declare const Flags_FlagCG: typeof FlagCG;
908
+ declare const Flags_FlagCH: typeof FlagCH;
909
+ declare const Flags_FlagCI: typeof FlagCI;
910
+ declare const Flags_FlagCK: typeof FlagCK;
911
+ declare const Flags_FlagCL: typeof FlagCL;
912
+ declare const Flags_FlagCM: typeof FlagCM;
913
+ declare const Flags_FlagCN: typeof FlagCN;
914
+ declare const Flags_FlagCO: typeof FlagCO;
915
+ declare const Flags_FlagCP: typeof FlagCP;
916
+ declare const Flags_FlagCR: typeof FlagCR;
917
+ declare const Flags_FlagCU: typeof FlagCU;
918
+ declare const Flags_FlagCV: typeof FlagCV;
919
+ declare const Flags_FlagCW: typeof FlagCW;
920
+ declare const Flags_FlagCX: typeof FlagCX;
921
+ declare const Flags_FlagCY: typeof FlagCY;
922
+ declare const Flags_FlagCZ: typeof FlagCZ;
923
+ declare const Flags_FlagCefta: typeof FlagCefta;
924
+ declare const Flags_FlagDE: typeof FlagDE;
925
+ declare const Flags_FlagDG: typeof FlagDG;
926
+ declare const Flags_FlagDJ: typeof FlagDJ;
927
+ declare const Flags_FlagDK: typeof FlagDK;
928
+ declare const Flags_FlagDM: typeof FlagDM;
929
+ declare const Flags_FlagDO: typeof FlagDO;
930
+ declare const Flags_FlagDZ: typeof FlagDZ;
931
+ declare const Flags_FlagEAC: typeof FlagEAC;
932
+ declare const Flags_FlagEC: typeof FlagEC;
933
+ declare const Flags_FlagEE: typeof FlagEE;
934
+ declare const Flags_FlagEG: typeof FlagEG;
935
+ declare const Flags_FlagEH: typeof FlagEH;
936
+ declare const Flags_FlagER: typeof FlagER;
937
+ declare const Flags_FlagES: typeof FlagES;
938
+ declare const Flags_FlagESCT: typeof FlagESCT;
939
+ declare const Flags_FlagESGA: typeof FlagESGA;
940
+ declare const Flags_FlagESPV: typeof FlagESPV;
941
+ declare const Flags_FlagET: typeof FlagET;
942
+ declare const Flags_FlagEU: typeof FlagEU;
943
+ declare const Flags_FlagFI: typeof FlagFI;
944
+ declare const Flags_FlagFJ: typeof FlagFJ;
945
+ declare const Flags_FlagFK: typeof FlagFK;
946
+ declare const Flags_FlagFM: typeof FlagFM;
947
+ declare const Flags_FlagFO: typeof FlagFO;
948
+ declare const Flags_FlagFR: typeof FlagFR;
949
+ declare const Flags_FlagGA: typeof FlagGA;
950
+ declare const Flags_FlagGB: typeof FlagGB;
951
+ declare const Flags_FlagGBENG: typeof FlagGBENG;
952
+ declare const Flags_FlagGBNIR: typeof FlagGBNIR;
953
+ declare const Flags_FlagGBSCT: typeof FlagGBSCT;
954
+ declare const Flags_FlagGBWLS: typeof FlagGBWLS;
955
+ declare const Flags_FlagGD: typeof FlagGD;
956
+ declare const Flags_FlagGE: typeof FlagGE;
957
+ declare const Flags_FlagGF: typeof FlagGF;
958
+ declare const Flags_FlagGG: typeof FlagGG;
959
+ declare const Flags_FlagGH: typeof FlagGH;
960
+ declare const Flags_FlagGI: typeof FlagGI;
961
+ declare const Flags_FlagGL: typeof FlagGL;
962
+ declare const Flags_FlagGM: typeof FlagGM;
963
+ declare const Flags_FlagGN: typeof FlagGN;
964
+ declare const Flags_FlagGP: typeof FlagGP;
965
+ declare const Flags_FlagGQ: typeof FlagGQ;
966
+ declare const Flags_FlagGR: typeof FlagGR;
967
+ declare const Flags_FlagGS: typeof FlagGS;
968
+ declare const Flags_FlagGT: typeof FlagGT;
969
+ declare const Flags_FlagGU: typeof FlagGU;
970
+ declare const Flags_FlagGW: typeof FlagGW;
971
+ declare const Flags_FlagGY: typeof FlagGY;
972
+ declare const Flags_FlagHK: typeof FlagHK;
973
+ declare const Flags_FlagHM: typeof FlagHM;
974
+ declare const Flags_FlagHN: typeof FlagHN;
975
+ declare const Flags_FlagHR: typeof FlagHR;
976
+ declare const Flags_FlagHT: typeof FlagHT;
977
+ declare const Flags_FlagHU: typeof FlagHU;
978
+ declare const Flags_FlagIC: typeof FlagIC;
979
+ declare const Flags_FlagID: typeof FlagID;
980
+ declare const Flags_FlagIE: typeof FlagIE;
981
+ declare const Flags_FlagIL: typeof FlagIL;
982
+ declare const Flags_FlagIM: typeof FlagIM;
983
+ declare const Flags_FlagIN: typeof FlagIN;
984
+ declare const Flags_FlagIO: typeof FlagIO;
985
+ declare const Flags_FlagIQ: typeof FlagIQ;
986
+ declare const Flags_FlagIR: typeof FlagIR;
987
+ declare const Flags_FlagIS: typeof FlagIS;
988
+ declare const Flags_FlagIT: typeof FlagIT;
989
+ declare const Flags_FlagJE: typeof FlagJE;
990
+ declare const Flags_FlagJM: typeof FlagJM;
991
+ declare const Flags_FlagJO: typeof FlagJO;
992
+ declare const Flags_FlagJP: typeof FlagJP;
993
+ declare const Flags_FlagKE: typeof FlagKE;
994
+ declare const Flags_FlagKG: typeof FlagKG;
995
+ declare const Flags_FlagKH: typeof FlagKH;
996
+ declare const Flags_FlagKI: typeof FlagKI;
997
+ declare const Flags_FlagKM: typeof FlagKM;
998
+ declare const Flags_FlagKN: typeof FlagKN;
999
+ declare const Flags_FlagKP: typeof FlagKP;
1000
+ declare const Flags_FlagKR: typeof FlagKR;
1001
+ declare const Flags_FlagKW: typeof FlagKW;
1002
+ declare const Flags_FlagKY: typeof FlagKY;
1003
+ declare const Flags_FlagKZ: typeof FlagKZ;
1004
+ declare const Flags_FlagLA: typeof FlagLA;
1005
+ declare const Flags_FlagLB: typeof FlagLB;
1006
+ declare const Flags_FlagLC: typeof FlagLC;
1007
+ declare const Flags_FlagLI: typeof FlagLI;
1008
+ declare const Flags_FlagLK: typeof FlagLK;
1009
+ declare const Flags_FlagLR: typeof FlagLR;
1010
+ declare const Flags_FlagLS: typeof FlagLS;
1011
+ declare const Flags_FlagLT: typeof FlagLT;
1012
+ declare const Flags_FlagLU: typeof FlagLU;
1013
+ declare const Flags_FlagLV: typeof FlagLV;
1014
+ declare const Flags_FlagLY: typeof FlagLY;
1015
+ declare const Flags_FlagMA: typeof FlagMA;
1016
+ declare const Flags_FlagMC: typeof FlagMC;
1017
+ declare const Flags_FlagMD: typeof FlagMD;
1018
+ declare const Flags_FlagME: typeof FlagME;
1019
+ declare const Flags_FlagMF: typeof FlagMF;
1020
+ declare const Flags_FlagMG: typeof FlagMG;
1021
+ declare const Flags_FlagMH: typeof FlagMH;
1022
+ declare const Flags_FlagMK: typeof FlagMK;
1023
+ declare const Flags_FlagML: typeof FlagML;
1024
+ declare const Flags_FlagMM: typeof FlagMM;
1025
+ declare const Flags_FlagMN: typeof FlagMN;
1026
+ declare const Flags_FlagMO: typeof FlagMO;
1027
+ declare const Flags_FlagMP: typeof FlagMP;
1028
+ declare const Flags_FlagMQ: typeof FlagMQ;
1029
+ declare const Flags_FlagMR: typeof FlagMR;
1030
+ declare const Flags_FlagMS: typeof FlagMS;
1031
+ declare const Flags_FlagMT: typeof FlagMT;
1032
+ declare const Flags_FlagMU: typeof FlagMU;
1033
+ declare const Flags_FlagMV: typeof FlagMV;
1034
+ declare const Flags_FlagMW: typeof FlagMW;
1035
+ declare const Flags_FlagMX: typeof FlagMX;
1036
+ declare const Flags_FlagMY: typeof FlagMY;
1037
+ declare const Flags_FlagMZ: typeof FlagMZ;
1038
+ declare const Flags_FlagNA: typeof FlagNA;
1039
+ declare const Flags_FlagNC: typeof FlagNC;
1040
+ declare const Flags_FlagNE: typeof FlagNE;
1041
+ declare const Flags_FlagNF: typeof FlagNF;
1042
+ declare const Flags_FlagNG: typeof FlagNG;
1043
+ declare const Flags_FlagNI: typeof FlagNI;
1044
+ declare const Flags_FlagNL: typeof FlagNL;
1045
+ declare const Flags_FlagNO: typeof FlagNO;
1046
+ declare const Flags_FlagNP: typeof FlagNP;
1047
+ declare const Flags_FlagNR: typeof FlagNR;
1048
+ declare const Flags_FlagNU: typeof FlagNU;
1049
+ declare const Flags_FlagNZ: typeof FlagNZ;
1050
+ declare const Flags_FlagOM: typeof FlagOM;
1051
+ declare const Flags_FlagPA: typeof FlagPA;
1052
+ declare const Flags_FlagPC: typeof FlagPC;
1053
+ declare const Flags_FlagPE: typeof FlagPE;
1054
+ declare const Flags_FlagPF: typeof FlagPF;
1055
+ declare const Flags_FlagPG: typeof FlagPG;
1056
+ declare const Flags_FlagPH: typeof FlagPH;
1057
+ declare const Flags_FlagPK: typeof FlagPK;
1058
+ declare const Flags_FlagPL: typeof FlagPL;
1059
+ declare const Flags_FlagPM: typeof FlagPM;
1060
+ declare const Flags_FlagPN: typeof FlagPN;
1061
+ declare const Flags_FlagPR: typeof FlagPR;
1062
+ declare const Flags_FlagPS: typeof FlagPS;
1063
+ declare const Flags_FlagPT: typeof FlagPT;
1064
+ declare const Flags_FlagPW: typeof FlagPW;
1065
+ declare const Flags_FlagPY: typeof FlagPY;
1066
+ declare const Flags_FlagQA: typeof FlagQA;
1067
+ declare const Flags_FlagRE: typeof FlagRE;
1068
+ declare const Flags_FlagRO: typeof FlagRO;
1069
+ declare const Flags_FlagRS: typeof FlagRS;
1070
+ declare const Flags_FlagRU: typeof FlagRU;
1071
+ declare const Flags_FlagRW: typeof FlagRW;
1072
+ declare const Flags_FlagSA: typeof FlagSA;
1073
+ declare const Flags_FlagSB: typeof FlagSB;
1074
+ declare const Flags_FlagSC: typeof FlagSC;
1075
+ declare const Flags_FlagSD: typeof FlagSD;
1076
+ declare const Flags_FlagSE: typeof FlagSE;
1077
+ declare const Flags_FlagSG: typeof FlagSG;
1078
+ declare const Flags_FlagSH: typeof FlagSH;
1079
+ declare const Flags_FlagSHAC: typeof FlagSHAC;
1080
+ declare const Flags_FlagSHHL: typeof FlagSHHL;
1081
+ declare const Flags_FlagSHTA: typeof FlagSHTA;
1082
+ declare const Flags_FlagSI: typeof FlagSI;
1083
+ declare const Flags_FlagSJ: typeof FlagSJ;
1084
+ declare const Flags_FlagSK: typeof FlagSK;
1085
+ declare const Flags_FlagSL: typeof FlagSL;
1086
+ declare const Flags_FlagSM: typeof FlagSM;
1087
+ declare const Flags_FlagSN: typeof FlagSN;
1088
+ declare const Flags_FlagSO: typeof FlagSO;
1089
+ declare const Flags_FlagSR: typeof FlagSR;
1090
+ declare const Flags_FlagSS: typeof FlagSS;
1091
+ declare const Flags_FlagST: typeof FlagST;
1092
+ declare const Flags_FlagSV: typeof FlagSV;
1093
+ declare const Flags_FlagSX: typeof FlagSX;
1094
+ declare const Flags_FlagSY: typeof FlagSY;
1095
+ declare const Flags_FlagSZ: typeof FlagSZ;
1096
+ declare const Flags_FlagTC: typeof FlagTC;
1097
+ declare const Flags_FlagTD: typeof FlagTD;
1098
+ declare const Flags_FlagTF: typeof FlagTF;
1099
+ declare const Flags_FlagTG: typeof FlagTG;
1100
+ declare const Flags_FlagTH: typeof FlagTH;
1101
+ declare const Flags_FlagTJ: typeof FlagTJ;
1102
+ declare const Flags_FlagTK: typeof FlagTK;
1103
+ declare const Flags_FlagTL: typeof FlagTL;
1104
+ declare const Flags_FlagTM: typeof FlagTM;
1105
+ declare const Flags_FlagTN: typeof FlagTN;
1106
+ declare const Flags_FlagTO: typeof FlagTO;
1107
+ declare const Flags_FlagTR: typeof FlagTR;
1108
+ declare const Flags_FlagTT: typeof FlagTT;
1109
+ declare const Flags_FlagTV: typeof FlagTV;
1110
+ declare const Flags_FlagTW: typeof FlagTW;
1111
+ declare const Flags_FlagTZ: typeof FlagTZ;
1112
+ declare const Flags_FlagUA: typeof FlagUA;
1113
+ declare const Flags_FlagUG: typeof FlagUG;
1114
+ declare const Flags_FlagUM: typeof FlagUM;
1115
+ declare const Flags_FlagUN: typeof FlagUN;
1116
+ declare const Flags_FlagUS: typeof FlagUS;
1117
+ declare const Flags_FlagUY: typeof FlagUY;
1118
+ declare const Flags_FlagUZ: typeof FlagUZ;
1119
+ declare const Flags_FlagVA: typeof FlagVA;
1120
+ declare const Flags_FlagVC: typeof FlagVC;
1121
+ declare const Flags_FlagVE: typeof FlagVE;
1122
+ declare const Flags_FlagVG: typeof FlagVG;
1123
+ declare const Flags_FlagVI: typeof FlagVI;
1124
+ declare const Flags_FlagVN: typeof FlagVN;
1125
+ declare const Flags_FlagVU: typeof FlagVU;
1126
+ declare const Flags_FlagWF: typeof FlagWF;
1127
+ declare const Flags_FlagWS: typeof FlagWS;
1128
+ declare const Flags_FlagXK: typeof FlagXK;
1129
+ declare const Flags_FlagXX: typeof FlagXX;
1130
+ declare const Flags_FlagYE: typeof FlagYE;
1131
+ declare const Flags_FlagYT: typeof FlagYT;
1132
+ declare const Flags_FlagZA: typeof FlagZA;
1133
+ declare const Flags_FlagZM: typeof FlagZM;
1134
+ declare const Flags_FlagZW: typeof FlagZW;
1135
+ declare namespace Flags {
1136
+ export { Flags_FlagAD as FlagAD, FlagAD as FlagADFlag, Flags_FlagAE as FlagAE, FlagAE as FlagAEFlag, Flags_FlagAF as FlagAF, FlagAF as FlagAFFlag, Flags_FlagAG as FlagAG, FlagAG as FlagAGFlag, Flags_FlagAI as FlagAI, FlagAI as FlagAIFlag, Flags_FlagAL as FlagAL, FlagAL as FlagALFlag, Flags_FlagAM as FlagAM, FlagAM as FlagAMFlag, Flags_FlagAO as FlagAO, FlagAO as FlagAOFlag, Flags_FlagAQ as FlagAQ, FlagAQ as FlagAQFlag, Flags_FlagAR as FlagAR, FlagAR as FlagARFlag, Flags_FlagAS as FlagAS, FlagAS as FlagASFlag, Flags_FlagAT as FlagAT, FlagAT as FlagATFlag, Flags_FlagAU as FlagAU, FlagAU as FlagAUFlag, Flags_FlagAW as FlagAW, FlagAW as FlagAWFlag, Flags_FlagAX as FlagAX, FlagAX as FlagAXFlag, Flags_FlagAZ as FlagAZ, FlagAZ as FlagAZFlag, Flags_FlagArab as FlagArab, FlagArab as FlagArabFlag, Flags_FlagAsean as FlagAsean, FlagAsean as FlagAseanFlag, Flags_FlagBA as FlagBA, FlagBA as FlagBAFlag, Flags_FlagBB as FlagBB, FlagBB as FlagBBFlag, Flags_FlagBD as FlagBD, FlagBD as FlagBDFlag, Flags_FlagBE as FlagBE, FlagBE as FlagBEFlag, Flags_FlagBF as FlagBF, FlagBF as FlagBFFlag, Flags_FlagBG as FlagBG, FlagBG as FlagBGFlag, Flags_FlagBH as FlagBH, FlagBH as FlagBHFlag, Flags_FlagBI as FlagBI, FlagBI as FlagBIFlag, Flags_FlagBJ as FlagBJ, FlagBJ as FlagBJFlag, Flags_FlagBL as FlagBL, FlagBL as FlagBLFlag, Flags_FlagBM as FlagBM, FlagBM as FlagBMFlag, Flags_FlagBN as FlagBN, FlagBN as FlagBNFlag, Flags_FlagBO as FlagBO, FlagBO as FlagBOFlag, Flags_FlagBQ as FlagBQ, FlagBQ as FlagBQFlag, Flags_FlagBR as FlagBR, FlagBR as FlagBRFlag, Flags_FlagBS as FlagBS, FlagBS as FlagBSFlag, Flags_FlagBT as FlagBT, FlagBT as FlagBTFlag, Flags_FlagBV as FlagBV, FlagBV as FlagBVFlag, Flags_FlagBW as FlagBW, FlagBW as FlagBWFlag, Flags_FlagBY as FlagBY, FlagBY as FlagBYFlag, Flags_FlagBZ as FlagBZ, FlagBZ as FlagBZFlag, Flags_FlagCA as FlagCA, FlagCA as FlagCAFlag, Flags_FlagCC as FlagCC, FlagCC as FlagCCFlag, Flags_FlagCD as FlagCD, FlagCD as FlagCDFlag, Flags_FlagCF as FlagCF, FlagCF as FlagCFFlag, Flags_FlagCG as FlagCG, FlagCG as FlagCGFlag, Flags_FlagCH as FlagCH, FlagCH as FlagCHFlag, Flags_FlagCI as FlagCI, FlagCI as FlagCIFlag, Flags_FlagCK as FlagCK, FlagCK as FlagCKFlag, Flags_FlagCL as FlagCL, FlagCL as FlagCLFlag, Flags_FlagCM as FlagCM, FlagCM as FlagCMFlag, Flags_FlagCN as FlagCN, FlagCN as FlagCNFlag, Flags_FlagCO as FlagCO, FlagCO as FlagCOFlag, Flags_FlagCP as FlagCP, FlagCP as FlagCPFlag, Flags_FlagCR as FlagCR, FlagCR as FlagCRFlag, Flags_FlagCU as FlagCU, FlagCU as FlagCUFlag, Flags_FlagCV as FlagCV, FlagCV as FlagCVFlag, Flags_FlagCW as FlagCW, FlagCW as FlagCWFlag, Flags_FlagCX as FlagCX, FlagCX as FlagCXFlag, Flags_FlagCY as FlagCY, FlagCY as FlagCYFlag, Flags_FlagCZ as FlagCZ, FlagCZ as FlagCZFlag, Flags_FlagCefta as FlagCefta, FlagCefta as FlagCeftaFlag, Flags_FlagDE as FlagDE, FlagDE as FlagDEFlag, Flags_FlagDG as FlagDG, FlagDG as FlagDGFlag, Flags_FlagDJ as FlagDJ, FlagDJ as FlagDJFlag, Flags_FlagDK as FlagDK, FlagDK as FlagDKFlag, Flags_FlagDM as FlagDM, FlagDM as FlagDMFlag, Flags_FlagDO as FlagDO, FlagDO as FlagDOFlag, Flags_FlagDZ as FlagDZ, FlagDZ as FlagDZFlag, Flags_FlagEAC as FlagEAC, FlagEAC as FlagEACFlag, Flags_FlagEC as FlagEC, FlagEC as FlagECFlag, Flags_FlagEE as FlagEE, FlagEE as FlagEEFlag, Flags_FlagEG as FlagEG, FlagEG as FlagEGFlag, Flags_FlagEH as FlagEH, FlagEH as FlagEHFlag, Flags_FlagER as FlagER, FlagER as FlagERFlag, Flags_FlagES as FlagES, Flags_FlagESCT as FlagESCT, FlagESCT as FlagESCTFlag, FlagES as FlagESFlag, Flags_FlagESGA as FlagESGA, FlagESGA as FlagESGAFlag, Flags_FlagESPV as FlagESPV, FlagESPV as FlagESPVFlag, Flags_FlagET as FlagET, FlagET as FlagETFlag, Flags_FlagEU as FlagEU, FlagEU as FlagEUFlag, Flags_FlagFI as FlagFI, FlagFI as FlagFIFlag, Flags_FlagFJ as FlagFJ, FlagFJ as FlagFJFlag, Flags_FlagFK as FlagFK, FlagFK as FlagFKFlag, Flags_FlagFM as FlagFM, FlagFM as FlagFMFlag, Flags_FlagFO as FlagFO, FlagFO as FlagFOFlag, Flags_FlagFR as FlagFR, FlagFR as FlagFRFlag, Flags_FlagGA as FlagGA, FlagGA as FlagGAFlag, Flags_FlagGB as FlagGB, Flags_FlagGBENG as FlagGBENG, FlagGBENG as FlagGBENGFlag, FlagGB as FlagGBFlag, Flags_FlagGBNIR as FlagGBNIR, FlagGBNIR as FlagGBNIRFlag, Flags_FlagGBSCT as FlagGBSCT, FlagGBSCT as FlagGBSCTFlag, Flags_FlagGBWLS as FlagGBWLS, FlagGBWLS as FlagGBWLSFlag, Flags_FlagGD as FlagGD, FlagGD as FlagGDFlag, Flags_FlagGE as FlagGE, FlagGE as FlagGEFlag, Flags_FlagGF as FlagGF, FlagGF as FlagGFFlag, Flags_FlagGG as FlagGG, FlagGG as FlagGGFlag, Flags_FlagGH as FlagGH, FlagGH as FlagGHFlag, Flags_FlagGI as FlagGI, FlagGI as FlagGIFlag, Flags_FlagGL as FlagGL, FlagGL as FlagGLFlag, Flags_FlagGM as FlagGM, FlagGM as FlagGMFlag, Flags_FlagGN as FlagGN, FlagGN as FlagGNFlag, Flags_FlagGP as FlagGP, FlagGP as FlagGPFlag, Flags_FlagGQ as FlagGQ, FlagGQ as FlagGQFlag, Flags_FlagGR as FlagGR, FlagGR as FlagGRFlag, Flags_FlagGS as FlagGS, FlagGS as FlagGSFlag, Flags_FlagGT as FlagGT, FlagGT as FlagGTFlag, Flags_FlagGU as FlagGU, FlagGU as FlagGUFlag, Flags_FlagGW as FlagGW, FlagGW as FlagGWFlag, Flags_FlagGY as FlagGY, FlagGY as FlagGYFlag, Flags_FlagHK as FlagHK, FlagHK as FlagHKFlag, Flags_FlagHM as FlagHM, FlagHM as FlagHMFlag, Flags_FlagHN as FlagHN, FlagHN as FlagHNFlag, Flags_FlagHR as FlagHR, FlagHR as FlagHRFlag, Flags_FlagHT as FlagHT, FlagHT as FlagHTFlag, Flags_FlagHU as FlagHU, FlagHU as FlagHUFlag, Flags_FlagIC as FlagIC, FlagIC as FlagICFlag, Flags_FlagID as FlagID, FlagID as FlagIDFlag, Flags_FlagIE as FlagIE, FlagIE as FlagIEFlag, Flags_FlagIL as FlagIL, FlagIL as FlagILFlag, Flags_FlagIM as FlagIM, FlagIM as FlagIMFlag, Flags_FlagIN as FlagIN, FlagIN as FlagINFlag, Flags_FlagIO as FlagIO, FlagIO as FlagIOFlag, Flags_FlagIQ as FlagIQ, FlagIQ as FlagIQFlag, Flags_FlagIR as FlagIR, FlagIR as FlagIRFlag, Flags_FlagIS as FlagIS, FlagIS as FlagISFlag, Flags_FlagIT as FlagIT, FlagIT as FlagITFlag, Flags_FlagJE as FlagJE, FlagJE as FlagJEFlag, Flags_FlagJM as FlagJM, FlagJM as FlagJMFlag, Flags_FlagJO as FlagJO, FlagJO as FlagJOFlag, Flags_FlagJP as FlagJP, FlagJP as FlagJPFlag, Flags_FlagKE as FlagKE, FlagKE as FlagKEFlag, Flags_FlagKG as FlagKG, FlagKG as FlagKGFlag, Flags_FlagKH as FlagKH, FlagKH as FlagKHFlag, Flags_FlagKI as FlagKI, FlagKI as FlagKIFlag, Flags_FlagKM as FlagKM, FlagKM as FlagKMFlag, Flags_FlagKN as FlagKN, FlagKN as FlagKNFlag, Flags_FlagKP as FlagKP, FlagKP as FlagKPFlag, Flags_FlagKR as FlagKR, FlagKR as FlagKRFlag, Flags_FlagKW as FlagKW, FlagKW as FlagKWFlag, Flags_FlagKY as FlagKY, FlagKY as FlagKYFlag, Flags_FlagKZ as FlagKZ, FlagKZ as FlagKZFlag, Flags_FlagLA as FlagLA, FlagLA as FlagLAFlag, Flags_FlagLB as FlagLB, FlagLB as FlagLBFlag, Flags_FlagLC as FlagLC, FlagLC as FlagLCFlag, Flags_FlagLI as FlagLI, FlagLI as FlagLIFlag, Flags_FlagLK as FlagLK, FlagLK as FlagLKFlag, Flags_FlagLR as FlagLR, FlagLR as FlagLRFlag, Flags_FlagLS as FlagLS, FlagLS as FlagLSFlag, Flags_FlagLT as FlagLT, FlagLT as FlagLTFlag, Flags_FlagLU as FlagLU, FlagLU as FlagLUFlag, Flags_FlagLV as FlagLV, FlagLV as FlagLVFlag, Flags_FlagLY as FlagLY, FlagLY as FlagLYFlag, Flags_FlagMA as FlagMA, FlagMA as FlagMAFlag, Flags_FlagMC as FlagMC, FlagMC as FlagMCFlag, Flags_FlagMD as FlagMD, FlagMD as FlagMDFlag, Flags_FlagME as FlagME, FlagME as FlagMEFlag, Flags_FlagMF as FlagMF, FlagMF as FlagMFFlag, Flags_FlagMG as FlagMG, FlagMG as FlagMGFlag, Flags_FlagMH as FlagMH, FlagMH as FlagMHFlag, Flags_FlagMK as FlagMK, FlagMK as FlagMKFlag, Flags_FlagML as FlagML, FlagML as FlagMLFlag, Flags_FlagMM as FlagMM, FlagMM as FlagMMFlag, Flags_FlagMN as FlagMN, FlagMN as FlagMNFlag, Flags_FlagMO as FlagMO, FlagMO as FlagMOFlag, Flags_FlagMP as FlagMP, FlagMP as FlagMPFlag, Flags_FlagMQ as FlagMQ, FlagMQ as FlagMQFlag, Flags_FlagMR as FlagMR, FlagMR as FlagMRFlag, Flags_FlagMS as FlagMS, FlagMS as FlagMSFlag, Flags_FlagMT as FlagMT, FlagMT as FlagMTFlag, Flags_FlagMU as FlagMU, FlagMU as FlagMUFlag, Flags_FlagMV as FlagMV, FlagMV as FlagMVFlag, Flags_FlagMW as FlagMW, FlagMW as FlagMWFlag, Flags_FlagMX as FlagMX, FlagMX as FlagMXFlag, Flags_FlagMY as FlagMY, FlagMY as FlagMYFlag, Flags_FlagMZ as FlagMZ, FlagMZ as FlagMZFlag, Flags_FlagNA as FlagNA, FlagNA as FlagNAFlag, Flags_FlagNC as FlagNC, FlagNC as FlagNCFlag, Flags_FlagNE as FlagNE, FlagNE as FlagNEFlag, Flags_FlagNF as FlagNF, FlagNF as FlagNFFlag, Flags_FlagNG as FlagNG, FlagNG as FlagNGFlag, Flags_FlagNI as FlagNI, FlagNI as FlagNIFlag, Flags_FlagNL as FlagNL, FlagNL as FlagNLFlag, Flags_FlagNO as FlagNO, FlagNO as FlagNOFlag, Flags_FlagNP as FlagNP, FlagNP as FlagNPFlag, Flags_FlagNR as FlagNR, FlagNR as FlagNRFlag, Flags_FlagNU as FlagNU, FlagNU as FlagNUFlag, Flags_FlagNZ as FlagNZ, FlagNZ as FlagNZFlag, Flags_FlagOM as FlagOM, FlagOM as FlagOMFlag, Flags_FlagPA as FlagPA, FlagPA as FlagPAFlag, Flags_FlagPC as FlagPC, FlagPC as FlagPCFlag, Flags_FlagPE as FlagPE, FlagPE as FlagPEFlag, Flags_FlagPF as FlagPF, FlagPF as FlagPFFlag, Flags_FlagPG as FlagPG, FlagPG as FlagPGFlag, Flags_FlagPH as FlagPH, FlagPH as FlagPHFlag, Flags_FlagPK as FlagPK, FlagPK as FlagPKFlag, Flags_FlagPL as FlagPL, FlagPL as FlagPLFlag, Flags_FlagPM as FlagPM, FlagPM as FlagPMFlag, Flags_FlagPN as FlagPN, FlagPN as FlagPNFlag, Flags_FlagPR as FlagPR, FlagPR as FlagPRFlag, Flags_FlagPS as FlagPS, FlagPS as FlagPSFlag, Flags_FlagPT as FlagPT, FlagPT as FlagPTFlag, Flags_FlagPW as FlagPW, FlagPW as FlagPWFlag, Flags_FlagPY as FlagPY, FlagPY as FlagPYFlag, Flags_FlagQA as FlagQA, FlagQA as FlagQAFlag, Flags_FlagRE as FlagRE, FlagRE as FlagREFlag, Flags_FlagRO as FlagRO, FlagRO as FlagROFlag, Flags_FlagRS as FlagRS, FlagRS as FlagRSFlag, Flags_FlagRU as FlagRU, FlagRU as FlagRUFlag, Flags_FlagRW as FlagRW, FlagRW as FlagRWFlag, Flags_FlagSA as FlagSA, FlagSA as FlagSAFlag, Flags_FlagSB as FlagSB, FlagSB as FlagSBFlag, Flags_FlagSC as FlagSC, FlagSC as FlagSCFlag, Flags_FlagSD as FlagSD, FlagSD as FlagSDFlag, Flags_FlagSE as FlagSE, FlagSE as FlagSEFlag, Flags_FlagSG as FlagSG, FlagSG as FlagSGFlag, Flags_FlagSH as FlagSH, Flags_FlagSHAC as FlagSHAC, FlagSHAC as FlagSHACFlag, FlagSH as FlagSHFlag, Flags_FlagSHHL as FlagSHHL, FlagSHHL as FlagSHHLFlag, Flags_FlagSHTA as FlagSHTA, FlagSHTA as FlagSHTAFlag, Flags_FlagSI as FlagSI, FlagSI as FlagSIFlag, Flags_FlagSJ as FlagSJ, FlagSJ as FlagSJFlag, Flags_FlagSK as FlagSK, FlagSK as FlagSKFlag, Flags_FlagSL as FlagSL, FlagSL as FlagSLFlag, Flags_FlagSM as FlagSM, FlagSM as FlagSMFlag, Flags_FlagSN as FlagSN, FlagSN as FlagSNFlag, Flags_FlagSO as FlagSO, FlagSO as FlagSOFlag, Flags_FlagSR as FlagSR, FlagSR as FlagSRFlag, Flags_FlagSS as FlagSS, FlagSS as FlagSSFlag, Flags_FlagST as FlagST, FlagST as FlagSTFlag, Flags_FlagSV as FlagSV, FlagSV as FlagSVFlag, Flags_FlagSX as FlagSX, FlagSX as FlagSXFlag, Flags_FlagSY as FlagSY, FlagSY as FlagSYFlag, Flags_FlagSZ as FlagSZ, FlagSZ as FlagSZFlag, Flags_FlagTC as FlagTC, FlagTC as FlagTCFlag, Flags_FlagTD as FlagTD, FlagTD as FlagTDFlag, Flags_FlagTF as FlagTF, FlagTF as FlagTFFlag, Flags_FlagTG as FlagTG, FlagTG as FlagTGFlag, Flags_FlagTH as FlagTH, FlagTH as FlagTHFlag, Flags_FlagTJ as FlagTJ, FlagTJ as FlagTJFlag, Flags_FlagTK as FlagTK, FlagTK as FlagTKFlag, Flags_FlagTL as FlagTL, FlagTL as FlagTLFlag, Flags_FlagTM as FlagTM, FlagTM as FlagTMFlag, Flags_FlagTN as FlagTN, FlagTN as FlagTNFlag, Flags_FlagTO as FlagTO, FlagTO as FlagTOFlag, Flags_FlagTR as FlagTR, FlagTR as FlagTRFlag, Flags_FlagTT as FlagTT, FlagTT as FlagTTFlag, Flags_FlagTV as FlagTV, FlagTV as FlagTVFlag, Flags_FlagTW as FlagTW, FlagTW as FlagTWFlag, Flags_FlagTZ as FlagTZ, FlagTZ as FlagTZFlag, Flags_FlagUA as FlagUA, FlagUA as FlagUAFlag, Flags_FlagUG as FlagUG, FlagUG as FlagUGFlag, Flags_FlagUM as FlagUM, FlagUM as FlagUMFlag, Flags_FlagUN as FlagUN, FlagUN as FlagUNFlag, Flags_FlagUS as FlagUS, FlagUS as FlagUSFlag, Flags_FlagUY as FlagUY, FlagUY as FlagUYFlag, Flags_FlagUZ as FlagUZ, FlagUZ as FlagUZFlag, Flags_FlagVA as FlagVA, FlagVA as FlagVAFlag, Flags_FlagVC as FlagVC, FlagVC as FlagVCFlag, Flags_FlagVE as FlagVE, FlagVE as FlagVEFlag, Flags_FlagVG as FlagVG, FlagVG as FlagVGFlag, Flags_FlagVI as FlagVI, FlagVI as FlagVIFlag, Flags_FlagVN as FlagVN, FlagVN as FlagVNFlag, Flags_FlagVU as FlagVU, FlagVU as FlagVUFlag, Flags_FlagWF as FlagWF, FlagWF as FlagWFFlag, Flags_FlagWS as FlagWS, FlagWS as FlagWSFlag, Flags_FlagXK as FlagXK, FlagXK as FlagXKFlag, Flags_FlagXX as FlagXX, FlagXX as FlagXXFlag, Flags_FlagYE as FlagYE, FlagYE as FlagYEFlag, Flags_FlagYT as FlagYT, FlagYT as FlagYTFlag, Flags_FlagZA as FlagZA, FlagZA as FlagZAFlag, Flags_FlagZM as FlagZM, FlagZM as FlagZMFlag, Flags_FlagZW as FlagZW, FlagZW as FlagZWFlag };
1137
+ }
1138
+
1139
+ type FlagName = keyof typeof Flags;
1140
+ type FlagProps = HTMLAttributes<HTMLSpanElement> & {
1141
+ name: FlagName;
1142
+ size?: 'sm' | 'md' | 'lg';
1143
+ };
1144
+ declare function FlagIcon(props: FlagProps): react_jsx_runtime.JSX.Element;
1145
+
1146
+ export { Button, type ButtonColor, type ButtonProps, type ButtonRoundness, type ButtonSize, type ButtonVariant, Card, CardContent, type CardContentProps, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, Carousel, type CarouselItem, type CarouselProps, type Column, type Country, DataTable, type DataTableProps, Dialog, DialogContent, DialogFooter, DialogHeader, type DialogProps, Drawer, DrawerContent, DrawerFooter, DrawerHeader, type DrawerProps, FlagIcon, type FlagName, type FlagProps, IconButton, type IconButtonProps, InputField, type InputFieldProps, MultiSelect, type MultiSelectProps, SearchBar, type SearchBarProps, Select, type SelectProps, Separator, type SeparatorProps, TabList, type TabListProps, TabPanel, type TabPanelProps, Table, TableBody, type TableBodyProps, TableCell, type TableCellProps, TableContainer, type TableContainerProps, TableFooter, type TableFooterProps, TableHead, type TableHeadProps, type TablePaginationConfig, type TableProps, TableRow, type TableRowProps, TelInput, type TelInputProps, type TelInputValue, Tooltip, type TooltipProps, handleAlert, handleError, isValidPhoneChars, isValidPhoneLength, sanitizePhoneNumber, validatePhoneNumber };