@viraui/react 0.0.15 → 0.0.17

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.
Files changed (155) hide show
  1. package/dist/catalog.json +6 -0
  2. package/dist/components/avatar/avatar.css +1 -55
  3. package/dist/components/avatar/avatar.d.ts +1 -2
  4. package/dist/components/avatar/avatar.js +49 -14
  5. package/dist/components/avatar/avatar.module.js +7 -0
  6. package/dist/components/avatar/index.d.ts +2 -2
  7. package/dist/components/basic-input/basic-input.css +1 -45
  8. package/dist/components/basic-input/basic-input.d.ts +0 -1
  9. package/dist/components/basic-input/basic-input.js +24 -13
  10. package/dist/components/basic-input/basic-input.module.js +3 -0
  11. package/dist/components/basic-input/field-helper-copy.d.ts +2 -1
  12. package/dist/components/basic-input/field-helper-copy.js +43 -24
  13. package/dist/components/basic-input/field-label.css +1 -0
  14. package/dist/components/basic-input/field-label.d.ts +10 -0
  15. package/dist/components/basic-input/field-label.js +24 -0
  16. package/dist/components/basic-input/field-label.module.js +3 -0
  17. package/dist/components/basic-input/index.d.ts +7 -2
  18. package/dist/components/basic-input/input-control-group.d.ts +2 -0
  19. package/dist/components/basic-input/input-control-group.js +40 -7
  20. package/dist/components/button/button.css +1 -156
  21. package/dist/components/button/button.d.ts +3 -3
  22. package/dist/components/button/button.js +104 -14
  23. package/dist/components/button/button.module.js +7 -0
  24. package/dist/components/button/index.d.ts +2 -2
  25. package/dist/components/checkbox/checkbox.css +1 -0
  26. package/dist/components/checkbox/checkbox.d.ts +65 -0
  27. package/dist/components/checkbox/checkbox.guide.json +22 -0
  28. package/dist/components/checkbox/checkbox.js +73 -0
  29. package/dist/components/checkbox/checkbox.module.js +10 -0
  30. package/dist/components/checkbox/index.d.ts +2 -0
  31. package/dist/components/clamp-text/clamp-text.css +1 -12
  32. package/dist/components/clamp-text/clamp-text.d.ts +1 -2
  33. package/dist/components/clamp-text/clamp-text.js +27 -22
  34. package/dist/components/clamp-text/clamp-text.module.js +3 -0
  35. package/dist/components/clamp-text/index.d.ts +2 -2
  36. package/dist/components/elevator/elevator.d.ts +5 -5
  37. package/dist/components/elevator/elevator.js +27 -27
  38. package/dist/components/elevator/index.d.ts +2 -2
  39. package/dist/components/icon/icon.css +1 -7
  40. package/dist/components/icon/icon.d.ts +2 -3
  41. package/dist/components/icon/icon.js +18 -9
  42. package/dist/components/icon/icon.module.js +3 -0
  43. package/dist/components/icon/index.d.ts +2 -2
  44. package/dist/components/icon-button/icon-button.d.ts +2 -2
  45. package/dist/components/icon-button/icon-button.js +10 -3
  46. package/dist/components/icon-button/index.d.ts +2 -2
  47. package/dist/components/index.d.ts +18 -17
  48. package/dist/components/select/index.d.ts +2 -2
  49. package/dist/components/select/select-group.d.ts +1 -1
  50. package/dist/components/select/select-group.js +37 -9
  51. package/dist/components/select/select-indicator-slot.js +33 -10
  52. package/dist/components/select/select-option.d.ts +1 -1
  53. package/dist/components/select/select-option.js +40 -10
  54. package/dist/components/select/select-separator.js +14 -6
  55. package/dist/components/select/select.css +1 -193
  56. package/dist/components/select/select.d.ts +10 -11
  57. package/dist/components/select/select.js +156 -32
  58. package/dist/components/select/select.module.js +19 -0
  59. package/dist/components/skeleton/index.d.ts +2 -2
  60. package/dist/components/skeleton/skeleton.css +1 -36
  61. package/dist/components/skeleton/skeleton.d.ts +2 -3
  62. package/dist/components/skeleton/skeleton.js +26 -15
  63. package/dist/components/skeleton/skeleton.module.js +6 -0
  64. package/dist/components/slider/index.d.ts +2 -2
  65. package/dist/components/slider/slider-control.d.ts +1 -2
  66. package/dist/components/slider/slider-control.js +43 -19
  67. package/dist/components/slider/slider-utils.js +6 -3
  68. package/dist/components/slider/slider.css +1 -64
  69. package/dist/components/slider/slider.d.ts +5 -8
  70. package/dist/components/slider/slider.js +83 -17
  71. package/dist/components/slider/slider.module.js +12 -0
  72. package/dist/components/spinner/index.d.ts +2 -2
  73. package/dist/components/spinner/spinner.css +1 -45
  74. package/dist/components/spinner/spinner.d.ts +1 -2
  75. package/dist/components/spinner/spinner.js +29 -6
  76. package/dist/components/spinner/spinner.module.js +7 -0
  77. package/dist/components/stack/index.d.ts +2 -2
  78. package/dist/components/stack/stack.css +1 -57
  79. package/dist/components/stack/stack.d.ts +2 -3
  80. package/dist/components/stack/stack.js +40 -36
  81. package/dist/components/stack/stack.module.js +3 -0
  82. package/dist/components/surface/index.d.ts +2 -2
  83. package/dist/components/surface/surface.css +1 -70
  84. package/dist/components/surface/surface.d.ts +10 -6
  85. package/dist/components/surface/surface.js +43 -40
  86. package/dist/components/surface/surface.module.js +6 -0
  87. package/dist/components/switch/index.d.ts +2 -2
  88. package/dist/components/switch/switch.css +1 -73
  89. package/dist/components/switch/switch.d.ts +17 -5
  90. package/dist/components/switch/switch.js +59 -13
  91. package/dist/components/switch/switch.module.js +7 -0
  92. package/dist/components/text/index.d.ts +2 -2
  93. package/dist/components/text/text.css +1 -140
  94. package/dist/components/text/text.d.ts +8 -3
  95. package/dist/components/text/text.js +46 -41
  96. package/dist/components/text/text.module.js +3 -0
  97. package/dist/components/textarea/index.d.ts +2 -2
  98. package/dist/components/textarea/textarea.css +1 -45
  99. package/dist/components/textarea/textarea.d.ts +3 -4
  100. package/dist/components/textarea/textarea.js +51 -11
  101. package/dist/components/textarea/textarea.module.js +7 -0
  102. package/dist/components/textfield/index.d.ts +2 -2
  103. package/dist/components/textfield/textfield.css +1 -87
  104. package/dist/components/textfield/textfield.d.ts +3 -4
  105. package/dist/components/textfield/textfield.js +58 -12
  106. package/dist/components/textfield/textfield.module.js +9 -0
  107. package/dist/components/title/index.d.ts +2 -2
  108. package/dist/components/title/title.css +1 -127
  109. package/dist/components/title/title.d.ts +8 -3
  110. package/dist/components/title/title.js +44 -39
  111. package/dist/components/title/title.module.js +3 -0
  112. package/dist/consumption.json +8 -4
  113. package/dist/core/elevation/elevation-types.js +6 -3
  114. package/dist/core/elevation/get-elevation-props.d.ts +1 -1
  115. package/dist/core/elevation/get-elevation-props.js +14 -11
  116. package/dist/core/props/intrinsic-vira-props.js +12 -9
  117. package/dist/core/styles/resolve-axis-padding.d.ts +1 -1
  118. package/dist/core/styles/resolve-axis-padding.js +15 -16
  119. package/dist/core/theme/resolve-theme-value.d.ts +1 -1
  120. package/dist/core/theme/resolve-theme-value.js +7 -6
  121. package/dist/index.d.ts +2 -2
  122. package/dist/index.js +21 -1
  123. package/dist/internal-icons/icon-registry.d.ts +242 -239
  124. package/dist/internal-icons/icon-registry.js +247 -238
  125. package/dist/internal-icons/icons/duo/Magnifier.d.ts +7 -0
  126. package/dist/internal-icons/icons/duo/Magnifier.js +13 -0
  127. package/dist/internal-icons/icons/duo/Minus.d.ts +7 -0
  128. package/dist/internal-icons/icons/duo/Minus.js +13 -0
  129. package/dist/internal-icons/icons/duo/Plus.d.ts +7 -0
  130. package/dist/internal-icons/icons/duo/Plus.js +13 -0
  131. package/dist/internal-icons/icons/duo/index.d.ts +241 -238
  132. package/dist/internal-icons/icons/duo/index.js +241 -238
  133. package/dist/preflight-surface.json +160 -0
  134. package/dist/preflight.css +1 -1
  135. package/package.json +11 -9
  136. package/dist/components/avatar/index.js +0 -1
  137. package/dist/components/basic-input/index.js +0 -1
  138. package/dist/components/button/index.js +0 -1
  139. package/dist/components/clamp-text/index.js +0 -1
  140. package/dist/components/elevator/index.js +0 -1
  141. package/dist/components/icon/index.js +0 -1
  142. package/dist/components/icon-button/index.js +0 -1
  143. package/dist/components/index.js +0 -17
  144. package/dist/components/select/index.js +0 -1
  145. package/dist/components/skeleton/index.js +0 -1
  146. package/dist/components/slider/index.js +0 -1
  147. package/dist/components/slider/slider-control.css +0 -71
  148. package/dist/components/spinner/index.js +0 -1
  149. package/dist/components/stack/index.js +0 -1
  150. package/dist/components/surface/index.js +0 -1
  151. package/dist/components/switch/index.js +0 -1
  152. package/dist/components/text/index.js +0 -1
  153. package/dist/components/textarea/index.js +0 -1
  154. package/dist/components/textfield/index.js +0 -1
  155. package/dist/components/title/index.js +0 -1
@@ -2,250 +2,253 @@ import type { ComponentType, SVGProps } from 'react';
2
2
  export type GeneratedIconComponent = ComponentType<SVGProps<SVGSVGElement> & {
3
3
  size?: number | string;
4
4
  }>;
5
- export declare const generatedIconNames: readonly ["AddSection", "AiDeveloper", "AiLoading", "Album3", "ArchiveContent2", "ArrowDown", "ArrowDownLeft", "ArrowDownRight", "ArrowLeft", "ArrowRight", "ArrowRotate", "ArrowRotateAnticlockwiseCheck", "ArrowRotateAnticlockwiseSlash", "ArrowRotateAnticlockwiseXmark", "ArrowRotateClockwiseSlash", "ArrowsFilter", "ArrowsToLineY2", "ArrowUp", "ArrowUpLeft", "ArrowUpRight", "Birdhouse", "BookmarkedBook", "BookmarkedBook2", "BookmarkList", "Box3", "BoxSparkle", "BoxSparkle2", "Brochure", "ButtonPlus", "Calculator3", "CaretDown", "CaretLeft", "CaretRight", "CaretUp", "Chart3", "ChartBar", "ChartCandlestick2", "ChatImage", "ChatInfo", "ChatTask", "Check", "CheckBoxArrow", "ChevronDown", "ChevronExpandY", "ChevronLeft", "ChevronLeftToLine", "ChevronRight", "ChevronRightToLine", "ChevronUp", "Child", "CircleCoinIn", "CircleCoinOut", "CircleCoinPlus", "CircleConversion", "CircleCross", "CircleHalfArrowDown", "CircleHalfArrowLeft", "CircleHalfArrowRight", "CircleHalfArrowUp", "CircleHalfDottedChart2", "ClockTime", "CloneDashed3", "CloneImageDashed", "CloneVideoDashed", "CloudeCode", "CoinStack", "ConditionalLogic", "Connection3", "ConnectPlus", "CopyDelete", "CopyId", "DarkLight", "Deaf", "DependencyLink", "DesktopDock", "DiamondSparkle", "DocumentScan", "Dog2", "DogLeash", "DogSlash", "DotFormation", "DrawFinger", "Ear", "EarSound", "Embed", "EnterDoor", "EnterHome", "ExitDoor", "Export2", "EyeSparkle", "FaceRobot", "FaceRobot2", "FaceRobot3", "FerrisWheel", "FileExport", "FlagMenu", "FocusCenter", "FoodOrder", "FuelCan", "FuelCan2", "Gear3Sparkle", "GridSparkle", "HandHoldingGlobe", "Handshake2", "Haptic", "HelpChat", "HexagonSparkle", "Hiking", "History2", "HorseHead", "HouseDollarSign", "HouseMinus2", "Images3", "Img4k", "InsertCrypto", "InsertDollar", "InstantMoney", "InvoiceIn", "InwardFlow", "JoinedHands", "LawShield", "Lectern", "Lectern2", "LightSpark", "LightSpark2", "ListExport", "ListFavs3", "ListFavs4", "LoadingStatus", "LoadingStatus2", "LockedChat", "MagicHat", "MagicRabbit", "MagnifierSparkle2", "MediaLibrary2", "Membership", "Menu4", "MilitaryMedal", "MobileCircuit", "MoneyRefund", "MoneyRefund2", "MoonStars", "MotionAlongPath", "Msgs2", "Navigation", "NavigationHorizontal", "NavigationVertical", "ObjectSelection", "OfficeUser", "OpenExternal", "OrbitSparkle", "OutwardFlow", "PaperPlaneFast", "Parachute", "Paw", "Peace", "PicnicTable", "Pillow", "Playground", "Playlist4", "Plug3", "Plug3Sparkle", "PlugOff", "PlugSparkle", "PopEffect", "ProfileAnalytics", "ProfileBasic", "ProgressIndicator2", "QuickActions", "QuickTimer", "Rabbit", "Receipt3", "Receipt4", "Redo2", "Redo3", "Refresh3AnticlockwiseSlash", "Refresh3ClockwiseSlash", "RefreshAnticlockwise", "RefreshAnticlockwiseSlash", "RefreshClockwiseSlash", "Refrigerator", "RemoteControl", "RemoteControl2", "ReportFile", "Reposition", "Rerouting", "Robot2", "Robot3", "Robot4", "RockOn", "RopeStanchions", "Rotation3602", "SavedItems2", "ScaleImg4k", "ScanImage", "ScissorsSparkle", "Seatbelt", "ShakaHand", "ShapeRectangle", "Shovel", "ShuffleSparkle", "SidebarEdit", "SideProfileQuestion", "SideProfileSparkle", "SlashCircle", "Sliders4", "Snail", "Spiral", "SplitView", "SquareDashedSearchSparkle", "SquareDashedText", "SquarePath", "Star2Slash", "StopSign", "StopwatchBolt", "SummitFlag", "Sun", "Sunrise2", "Task", "Task2", "TaskDebug", "TaskSearch", "Teepee", "TextAdjust", "TheatreMask", "TheatreMask2", "TimerProgress", "TimerProgress2", "TransactionSplit", "Undo2", "Undo3", "UnicornHead", "UserContact", "UserVoice2", "VipBadge", "VoiceCaption", "WalletCoins", "Weight"];
5
+ export declare const generatedIconNames: readonly ["AddSection", "AiDeveloper", "AiLoading", "Album3", "ArchiveContent2", "ArrowDown", "ArrowDownLeft", "ArrowDownRight", "ArrowLeft", "ArrowRight", "ArrowRotate", "ArrowRotateAnticlockwiseCheck", "ArrowRotateAnticlockwiseSlash", "ArrowRotateAnticlockwiseXmark", "ArrowRotateClockwiseSlash", "ArrowsFilter", "ArrowsToLineY2", "ArrowUp", "ArrowUpLeft", "ArrowUpRight", "Birdhouse", "BookmarkedBook", "BookmarkedBook2", "BookmarkList", "Box3", "BoxSparkle", "BoxSparkle2", "Brochure", "ButtonPlus", "Calculator3", "CaretDown", "CaretLeft", "CaretRight", "CaretUp", "Chart3", "ChartBar", "ChartCandlestick2", "ChatImage", "ChatInfo", "ChatTask", "Check", "CheckBoxArrow", "ChevronDown", "ChevronExpandY", "ChevronLeft", "ChevronLeftToLine", "ChevronRight", "ChevronRightToLine", "ChevronUp", "Child", "CircleCoinIn", "CircleCoinOut", "CircleCoinPlus", "CircleConversion", "CircleCross", "CircleHalfArrowDown", "CircleHalfArrowLeft", "CircleHalfArrowRight", "CircleHalfArrowUp", "CircleHalfDottedChart2", "ClockTime", "CloneDashed3", "CloneImageDashed", "CloneVideoDashed", "CloudeCode", "CoinStack", "ConditionalLogic", "Connection3", "ConnectPlus", "CopyDelete", "CopyId", "DarkLight", "Deaf", "DependencyLink", "DesktopDock", "DiamondSparkle", "DocumentScan", "Dog2", "DogLeash", "DogSlash", "DotFormation", "DrawFinger", "Ear", "EarSound", "Embed", "EnterDoor", "EnterHome", "ExitDoor", "Export2", "EyeSparkle", "FaceRobot", "FaceRobot2", "FaceRobot3", "FerrisWheel", "FileExport", "FlagMenu", "FocusCenter", "FoodOrder", "FuelCan", "FuelCan2", "Gear3Sparkle", "GridSparkle", "HandHoldingGlobe", "Handshake2", "Haptic", "HelpChat", "HexagonSparkle", "Hiking", "History2", "HorseHead", "HouseDollarSign", "HouseMinus2", "Images3", "Img4k", "InsertCrypto", "InsertDollar", "InstantMoney", "InvoiceIn", "InwardFlow", "JoinedHands", "LawShield", "Lectern", "Lectern2", "LightSpark", "LightSpark2", "ListExport", "ListFavs3", "ListFavs4", "LoadingStatus", "LoadingStatus2", "LockedChat", "MagicHat", "MagicRabbit", "Magnifier", "MagnifierSparkle2", "MediaLibrary2", "Membership", "Menu4", "MilitaryMedal", "Minus", "MobileCircuit", "MoneyRefund", "MoneyRefund2", "MoonStars", "MotionAlongPath", "Msgs2", "Navigation", "NavigationHorizontal", "NavigationVertical", "ObjectSelection", "OfficeUser", "OpenExternal", "OrbitSparkle", "OutwardFlow", "PaperPlaneFast", "Parachute", "Paw", "Peace", "PicnicTable", "Pillow", "Playground", "Playlist4", "Plug3", "Plug3Sparkle", "PlugOff", "PlugSparkle", "Plus", "PopEffect", "ProfileAnalytics", "ProfileBasic", "ProgressIndicator2", "QuickActions", "QuickTimer", "Rabbit", "Receipt3", "Receipt4", "Redo2", "Redo3", "Refresh3AnticlockwiseSlash", "Refresh3ClockwiseSlash", "RefreshAnticlockwise", "RefreshAnticlockwiseSlash", "RefreshClockwiseSlash", "Refrigerator", "RemoteControl", "RemoteControl2", "ReportFile", "Reposition", "Rerouting", "Robot2", "Robot3", "Robot4", "RockOn", "RopeStanchions", "Rotation3602", "SavedItems2", "ScaleImg4k", "ScanImage", "ScissorsSparkle", "Seatbelt", "ShakaHand", "ShapeRectangle", "Shovel", "ShuffleSparkle", "SidebarEdit", "SideProfileQuestion", "SideProfileSparkle", "SlashCircle", "Sliders4", "Snail", "Spiral", "SplitView", "SquareDashedSearchSparkle", "SquareDashedText", "SquarePath", "Star2Slash", "StopSign", "StopwatchBolt", "SummitFlag", "Sun", "Sunrise2", "Task", "Task2", "TaskDebug", "TaskSearch", "Teepee", "TextAdjust", "TheatreMask", "TheatreMask2", "TimerProgress", "TimerProgress2", "TransactionSplit", "Undo2", "Undo3", "UnicornHead", "UserContact", "UserVoice2", "VipBadge", "VoiceCaption", "WalletCoins", "Weight"];
6
6
  export type GeneratedIconName = (typeof generatedIconNames)[number];
7
7
  export declare const generatedIconVariants: readonly ["duo"];
8
8
  export type GeneratedIconVariant = (typeof generatedIconVariants)[number];
9
9
  export declare const generatedIconRegistry: {
10
10
  readonly duo: {
11
- readonly AddSection: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AddSection.js").AddSectionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
12
- readonly AiDeveloper: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AiDeveloper.js").AiDeveloperProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
13
- readonly AiLoading: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AiLoading.js").AiLoadingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
14
- readonly Album3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Album3.js").Album3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
15
- readonly ArchiveContent2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArchiveContent2.js").ArchiveContent2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
16
- readonly ArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDown.js").ArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
17
- readonly ArrowDownLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownLeft.js").ArrowDownLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
18
- readonly ArrowDownRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownRight.js").ArrowDownRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
19
- readonly ArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowLeft.js").ArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
20
- readonly ArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRight.js").ArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
21
- readonly ArrowRotate: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotate.js").ArrowRotateProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
22
- readonly ArrowRotateAnticlockwiseCheck: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseCheck.js").ArrowRotateAnticlockwiseCheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
23
- readonly ArrowRotateAnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseSlash.js").ArrowRotateAnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
24
- readonly ArrowRotateAnticlockwiseXmark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseXmark.js").ArrowRotateAnticlockwiseXmarkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
25
- readonly ArrowRotateClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateClockwiseSlash.js").ArrowRotateClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
26
- readonly ArrowsFilter: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowsFilter.js").ArrowsFilterProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
27
- readonly ArrowsToLineY2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowsToLineY2.js").ArrowsToLineY2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
28
- readonly ArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUp.js").ArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
29
- readonly ArrowUpLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpLeft.js").ArrowUpLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
30
- readonly ArrowUpRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpRight.js").ArrowUpRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
31
- readonly Birdhouse: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Birdhouse.js").BirdhouseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
32
- readonly BookmarkedBook: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkedBook.js").BookmarkedBookProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
33
- readonly BookmarkedBook2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkedBook2.js").BookmarkedBook2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
34
- readonly BookmarkList: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkList.js").BookmarkListProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
35
- readonly Box3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Box3.js").Box3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
36
- readonly BoxSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BoxSparkle.js").BoxSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
37
- readonly BoxSparkle2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BoxSparkle2.js").BoxSparkle2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
38
- readonly Brochure: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Brochure.js").BrochureProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
39
- readonly ButtonPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ButtonPlus.js").ButtonPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
40
- readonly Calculator3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Calculator3.js").Calculator3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
41
- readonly CaretDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretDown.js").CaretDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
42
- readonly CaretLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretLeft.js").CaretLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
43
- readonly CaretRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretRight.js").CaretRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
44
- readonly CaretUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretUp.js").CaretUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
45
- readonly Chart3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Chart3.js").Chart3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
46
- readonly ChartBar: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChartBar.js").ChartBarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
47
- readonly ChartCandlestick2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChartCandlestick2.js").ChartCandlestick2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
48
- readonly ChatImage: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatImage.js").ChatImageProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
49
- readonly ChatInfo: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatInfo.js").ChatInfoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
50
- readonly ChatTask: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatTask.js").ChatTaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
51
- readonly Check: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Check.js").CheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
52
- readonly CheckBoxArrow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CheckBoxArrow.js").CheckBoxArrowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
53
- readonly ChevronDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronDown.js").ChevronDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
54
- readonly ChevronExpandY: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronExpandY.js").ChevronExpandYProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
55
- readonly ChevronLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeft.js").ChevronLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
56
- readonly ChevronLeftToLine: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeftToLine.js").ChevronLeftToLineProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
57
- readonly ChevronRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRight.js").ChevronRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
58
- readonly ChevronRightToLine: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRightToLine.js").ChevronRightToLineProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
59
- readonly ChevronUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronUp.js").ChevronUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
60
- readonly Child: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Child.js").ChildProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
61
- readonly CircleCoinIn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinIn.js").CircleCoinInProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
62
- readonly CircleCoinOut: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinOut.js").CircleCoinOutProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
63
- readonly CircleCoinPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinPlus.js").CircleCoinPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
64
- readonly CircleConversion: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleConversion.js").CircleConversionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
65
- readonly CircleCross: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCross.js").CircleCrossProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
66
- readonly CircleHalfArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowDown.js").CircleHalfArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
67
- readonly CircleHalfArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowLeft.js").CircleHalfArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
68
- readonly CircleHalfArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowRight.js").CircleHalfArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
69
- readonly CircleHalfArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowUp.js").CircleHalfArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
70
- readonly CircleHalfDottedChart2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfDottedChart2.js").CircleHalfDottedChart2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
71
- readonly ClockTime: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ClockTime.js").ClockTimeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
72
- readonly CloneDashed3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneDashed3.js").CloneDashed3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
73
- readonly CloneImageDashed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneImageDashed.js").CloneImageDashedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
74
- readonly CloneVideoDashed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneVideoDashed.js").CloneVideoDashedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
75
- readonly CloudeCode: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloudeCode.js").CloudeCodeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
76
- readonly CoinStack: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CoinStack.js").CoinStackProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
77
- readonly ConditionalLogic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ConditionalLogic.js").ConditionalLogicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
78
- readonly Connection3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Connection3.js").Connection3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
79
- readonly ConnectPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ConnectPlus.js").ConnectPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
80
- readonly CopyDelete: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CopyDelete.js").CopyDeleteProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
81
- readonly CopyId: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CopyId.js").CopyIdProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
82
- readonly DarkLight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DarkLight.js").DarkLightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
83
- readonly Deaf: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Deaf.js").DeafProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
84
- readonly DependencyLink: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DependencyLink.js").DependencyLinkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
85
- readonly DesktopDock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DesktopDock.js").DesktopDockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
86
- readonly DiamondSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DiamondSparkle.js").DiamondSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
87
- readonly DocumentScan: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DocumentScan.js").DocumentScanProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
88
- readonly Dog2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Dog2.js").Dog2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
89
- readonly DogLeash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DogLeash.js").DogLeashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
90
- readonly DogSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DogSlash.js").DogSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
91
- readonly DotFormation: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DotFormation.js").DotFormationProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
92
- readonly DrawFinger: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DrawFinger.js").DrawFingerProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
93
- readonly Ear: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Ear.js").EarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
94
- readonly EarSound: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EarSound.js").EarSoundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
95
- readonly Embed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Embed.js").EmbedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
96
- readonly EnterDoor: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EnterDoor.js").EnterDoorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
97
- readonly EnterHome: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EnterHome.js").EnterHomeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
98
- readonly ExitDoor: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ExitDoor.js").ExitDoorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
99
- readonly Export2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Export2.js").Export2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
100
- readonly EyeSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EyeSparkle.js").EyeSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
101
- readonly FaceRobot: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot.js").FaceRobotProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
102
- readonly FaceRobot2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot2.js").FaceRobot2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
103
- readonly FaceRobot3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot3.js").FaceRobot3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
104
- readonly FerrisWheel: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FerrisWheel.js").FerrisWheelProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
105
- readonly FileExport: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FileExport.js").FileExportProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
106
- readonly FlagMenu: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FlagMenu.js").FlagMenuProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
107
- readonly FocusCenter: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FocusCenter.js").FocusCenterProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
108
- readonly FoodOrder: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FoodOrder.js").FoodOrderProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
109
- readonly FuelCan: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FuelCan.js").FuelCanProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
110
- readonly FuelCan2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FuelCan2.js").FuelCan2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
111
- readonly Gear3Sparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Gear3Sparkle.js").Gear3SparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
112
- readonly GridSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/GridSparkle.js").GridSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
113
- readonly HandHoldingGlobe: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HandHoldingGlobe.js").HandHoldingGlobeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
114
- readonly Handshake2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Handshake2.js").Handshake2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
115
- readonly Haptic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Haptic.js").HapticProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
116
- readonly HelpChat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HelpChat.js").HelpChatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
117
- readonly HexagonSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HexagonSparkle.js").HexagonSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
118
- readonly Hiking: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Hiking.js").HikingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
119
- readonly History2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/History2.js").History2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
120
- readonly HorseHead: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HorseHead.js").HorseHeadProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
121
- readonly HouseDollarSign: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HouseDollarSign.js").HouseDollarSignProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
122
- readonly HouseMinus2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HouseMinus2.js").HouseMinus2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
123
- readonly Images3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Images3.js").Images3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
124
- readonly Img4k: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Img4k.js").Img4kProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
125
- readonly InsertCrypto: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InsertCrypto.js").InsertCryptoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
126
- readonly InsertDollar: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InsertDollar.js").InsertDollarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
127
- readonly InstantMoney: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InstantMoney.js").InstantMoneyProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
128
- readonly InvoiceIn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InvoiceIn.js").InvoiceInProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
129
- readonly InwardFlow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InwardFlow.js").InwardFlowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
130
- readonly JoinedHands: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/JoinedHands.js").JoinedHandsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
131
- readonly LawShield: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LawShield.js").LawShieldProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
132
- readonly Lectern: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lectern.js").LecternProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
133
- readonly Lectern2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lectern2.js").Lectern2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
134
- readonly LightSpark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LightSpark.js").LightSparkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
135
- readonly LightSpark2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LightSpark2.js").LightSpark2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
136
- readonly ListExport: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListExport.js").ListExportProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
137
- readonly ListFavs3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListFavs3.js").ListFavs3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
138
- readonly ListFavs4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListFavs4.js").ListFavs4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
139
- readonly LoadingStatus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LoadingStatus.js").LoadingStatusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
140
- readonly LoadingStatus2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LoadingStatus2.js").LoadingStatus2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
141
- readonly LockedChat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LockedChat.js").LockedChatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
142
- readonly MagicHat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagicHat.js").MagicHatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
143
- readonly MagicRabbit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagicRabbit.js").MagicRabbitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
144
- readonly MagnifierSparkle2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagnifierSparkle2.js").MagnifierSparkle2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
145
- readonly MediaLibrary2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MediaLibrary2.js").MediaLibrary2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
146
- readonly Membership: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Membership.js").MembershipProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
147
- readonly Menu4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Menu4.js").Menu4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
148
- readonly MilitaryMedal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MilitaryMedal.js").MilitaryMedalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
149
- readonly MobileCircuit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MobileCircuit.js").MobileCircuitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
150
- readonly MoneyRefund: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoneyRefund.js").MoneyRefundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
151
- readonly MoneyRefund2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoneyRefund2.js").MoneyRefund2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
152
- readonly MoonStars: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoonStars.js").MoonStarsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
153
- readonly MotionAlongPath: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MotionAlongPath.js").MotionAlongPathProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
154
- readonly Msgs2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Msgs2.js").Msgs2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
155
- readonly Navigation: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Navigation.js").NavigationProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
156
- readonly NavigationHorizontal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/NavigationHorizontal.js").NavigationHorizontalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
157
- readonly NavigationVertical: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/NavigationVertical.js").NavigationVerticalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
158
- readonly ObjectSelection: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ObjectSelection.js").ObjectSelectionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
159
- readonly OfficeUser: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OfficeUser.js").OfficeUserProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
160
- readonly OpenExternal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OpenExternal.js").OpenExternalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
161
- readonly OrbitSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OrbitSparkle.js").OrbitSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
162
- readonly OutwardFlow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OutwardFlow.js").OutwardFlowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
163
- readonly PaperPlaneFast: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PaperPlaneFast.js").PaperPlaneFastProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
164
- readonly Parachute: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Parachute.js").ParachuteProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
165
- readonly Paw: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Paw.js").PawProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
166
- readonly Peace: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Peace.js").PeaceProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
167
- readonly PicnicTable: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PicnicTable.js").PicnicTableProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
168
- readonly Pillow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Pillow.js").PillowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
169
- readonly Playground: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Playground.js").PlaygroundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
170
- readonly Playlist4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Playlist4.js").Playlist4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
171
- readonly Plug3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plug3.js").Plug3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
172
- readonly Plug3Sparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plug3Sparkle.js").Plug3SparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
173
- readonly PlugOff: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PlugOff.js").PlugOffProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
174
- readonly PlugSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PlugSparkle.js").PlugSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
175
- readonly PopEffect: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PopEffect.js").PopEffectProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
176
- readonly ProfileAnalytics: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProfileAnalytics.js").ProfileAnalyticsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
177
- readonly ProfileBasic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProfileBasic.js").ProfileBasicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
178
- readonly ProgressIndicator2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProgressIndicator2.js").ProgressIndicator2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
179
- readonly QuickActions: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/QuickActions.js").QuickActionsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
180
- readonly QuickTimer: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/QuickTimer.js").QuickTimerProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
181
- readonly Rabbit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rabbit.js").RabbitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
182
- readonly Receipt3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Receipt3.js").Receipt3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
183
- readonly Receipt4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Receipt4.js").Receipt4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
184
- readonly Redo2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Redo2.js").Redo2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
185
- readonly Redo3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Redo3.js").Redo3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
186
- readonly Refresh3AnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refresh3AnticlockwiseSlash.js").Refresh3AnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
187
- readonly Refresh3ClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refresh3ClockwiseSlash.js").Refresh3ClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
188
- readonly RefreshAnticlockwise: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwise.js").RefreshAnticlockwiseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
189
- readonly RefreshAnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwiseSlash.js").RefreshAnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
190
- readonly RefreshClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshClockwiseSlash.js").RefreshClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
191
- readonly Refrigerator: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refrigerator.js").RefrigeratorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
192
- readonly RemoteControl: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RemoteControl.js").RemoteControlProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
193
- readonly RemoteControl2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RemoteControl2.js").RemoteControl2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
194
- readonly ReportFile: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ReportFile.js").ReportFileProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
195
- readonly Reposition: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Reposition.js").RepositionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
196
- readonly Rerouting: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rerouting.js").ReroutingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
197
- readonly Robot2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot2.js").Robot2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
198
- readonly Robot3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot3.js").Robot3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
199
- readonly Robot4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot4.js").Robot4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
200
- readonly RockOn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RockOn.js").RockOnProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
201
- readonly RopeStanchions: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RopeStanchions.js").RopeStanchionsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
202
- readonly Rotation3602: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rotation3602.js").Rotation3602Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
203
- readonly SavedItems2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SavedItems2.js").SavedItems2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
204
- readonly ScaleImg4k: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScaleImg4k.js").ScaleImg4kProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
205
- readonly ScanImage: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScanImage.js").ScanImageProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
206
- readonly ScissorsSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScissorsSparkle.js").ScissorsSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
207
- readonly Seatbelt: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Seatbelt.js").SeatbeltProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
208
- readonly ShakaHand: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShakaHand.js").ShakaHandProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
209
- readonly ShapeRectangle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShapeRectangle.js").ShapeRectangleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
210
- readonly Shovel: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Shovel.js").ShovelProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
211
- readonly ShuffleSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShuffleSparkle.js").ShuffleSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
212
- readonly SidebarEdit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SidebarEdit.js").SidebarEditProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
213
- readonly SideProfileQuestion: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SideProfileQuestion.js").SideProfileQuestionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
214
- readonly SideProfileSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SideProfileSparkle.js").SideProfileSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
215
- readonly SlashCircle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SlashCircle.js").SlashCircleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
216
- readonly Sliders4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sliders4.js").Sliders4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
217
- readonly Snail: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Snail.js").SnailProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
218
- readonly Spiral: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Spiral.js").SpiralProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
219
- readonly SplitView: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SplitView.js").SplitViewProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
220
- readonly SquareDashedSearchSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquareDashedSearchSparkle.js").SquareDashedSearchSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
221
- readonly SquareDashedText: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquareDashedText.js").SquareDashedTextProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
222
- readonly SquarePath: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquarePath.js").SquarePathProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
223
- readonly Star2Slash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Star2Slash.js").Star2SlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
224
- readonly StopSign: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/StopSign.js").StopSignProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
225
- readonly StopwatchBolt: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/StopwatchBolt.js").StopwatchBoltProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
226
- readonly SummitFlag: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SummitFlag.js").SummitFlagProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
227
- readonly Sun: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sun.js").SunProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
228
- readonly Sunrise2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sunrise2.js").Sunrise2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
229
- readonly Task: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Task.js").TaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
230
- readonly Task2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Task2.js").Task2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
231
- readonly TaskDebug: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TaskDebug.js").TaskDebugProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
232
- readonly TaskSearch: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TaskSearch.js").TaskSearchProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
233
- readonly Teepee: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Teepee.js").TeepeeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
234
- readonly TextAdjust: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TextAdjust.js").TextAdjustProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
235
- readonly TheatreMask: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TheatreMask.js").TheatreMaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
236
- readonly TheatreMask2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TheatreMask2.js").TheatreMask2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
237
- readonly TimerProgress: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TimerProgress.js").TimerProgressProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
238
- readonly TimerProgress2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TimerProgress2.js").TimerProgress2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
239
- readonly TransactionSplit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TransactionSplit.js").TransactionSplitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
240
- readonly Undo2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Undo2.js").Undo2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
241
- readonly Undo3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Undo3.js").Undo3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
242
- readonly UnicornHead: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UnicornHead.js").UnicornHeadProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
243
- readonly UserContact: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UserContact.js").UserContactProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
244
- readonly UserVoice2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UserVoice2.js").UserVoice2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
245
- readonly VipBadge: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/VipBadge.js").VipBadgeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
246
- readonly VoiceCaption: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/VoiceCaption.js").VoiceCaptionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
247
- readonly WalletCoins: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/WalletCoins.js").WalletCoinsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
248
- readonly Weight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Weight.js").WeightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
11
+ readonly AddSection: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AddSection").AddSectionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
12
+ readonly AiDeveloper: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AiDeveloper").AiDeveloperProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
13
+ readonly AiLoading: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/AiLoading").AiLoadingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
14
+ readonly Album3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Album3").Album3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
15
+ readonly ArchiveContent2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArchiveContent2").ArchiveContent2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
16
+ readonly ArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDown").ArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
17
+ readonly ArrowDownLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownLeft").ArrowDownLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
18
+ readonly ArrowDownRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowDownRight").ArrowDownRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
19
+ readonly ArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowLeft").ArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
20
+ readonly ArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRight").ArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
21
+ readonly ArrowRotate: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotate").ArrowRotateProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
22
+ readonly ArrowRotateAnticlockwiseCheck: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseCheck").ArrowRotateAnticlockwiseCheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
23
+ readonly ArrowRotateAnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseSlash").ArrowRotateAnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
24
+ readonly ArrowRotateAnticlockwiseXmark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateAnticlockwiseXmark").ArrowRotateAnticlockwiseXmarkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
25
+ readonly ArrowRotateClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowRotateClockwiseSlash").ArrowRotateClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
26
+ readonly ArrowsFilter: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowsFilter").ArrowsFilterProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
27
+ readonly ArrowsToLineY2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowsToLineY2").ArrowsToLineY2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
28
+ readonly ArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUp").ArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
29
+ readonly ArrowUpLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpLeft").ArrowUpLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
30
+ readonly ArrowUpRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ArrowUpRight").ArrowUpRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
31
+ readonly Birdhouse: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Birdhouse").BirdhouseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
32
+ readonly BookmarkedBook: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkedBook").BookmarkedBookProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
33
+ readonly BookmarkedBook2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkedBook2").BookmarkedBook2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
34
+ readonly BookmarkList: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BookmarkList").BookmarkListProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
35
+ readonly Box3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Box3").Box3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
36
+ readonly BoxSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BoxSparkle").BoxSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
37
+ readonly BoxSparkle2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/BoxSparkle2").BoxSparkle2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
38
+ readonly Brochure: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Brochure").BrochureProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
39
+ readonly ButtonPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ButtonPlus").ButtonPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
40
+ readonly Calculator3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Calculator3").Calculator3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
41
+ readonly CaretDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretDown").CaretDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
42
+ readonly CaretLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretLeft").CaretLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
43
+ readonly CaretRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretRight").CaretRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
44
+ readonly CaretUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CaretUp").CaretUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
45
+ readonly Chart3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Chart3").Chart3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
46
+ readonly ChartBar: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChartBar").ChartBarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
47
+ readonly ChartCandlestick2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChartCandlestick2").ChartCandlestick2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
48
+ readonly ChatImage: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatImage").ChatImageProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
49
+ readonly ChatInfo: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatInfo").ChatInfoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
50
+ readonly ChatTask: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChatTask").ChatTaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
51
+ readonly Check: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Check").CheckProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
52
+ readonly CheckBoxArrow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CheckBoxArrow").CheckBoxArrowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
53
+ readonly ChevronDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronDown").ChevronDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
54
+ readonly ChevronExpandY: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronExpandY").ChevronExpandYProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
55
+ readonly ChevronLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeft").ChevronLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
56
+ readonly ChevronLeftToLine: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronLeftToLine").ChevronLeftToLineProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
57
+ readonly ChevronRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRight").ChevronRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
58
+ readonly ChevronRightToLine: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronRightToLine").ChevronRightToLineProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
59
+ readonly ChevronUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ChevronUp").ChevronUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
60
+ readonly Child: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Child").ChildProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
61
+ readonly CircleCoinIn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinIn").CircleCoinInProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
62
+ readonly CircleCoinOut: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinOut").CircleCoinOutProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
63
+ readonly CircleCoinPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCoinPlus").CircleCoinPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
64
+ readonly CircleConversion: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleConversion").CircleConversionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
65
+ readonly CircleCross: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleCross").CircleCrossProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
66
+ readonly CircleHalfArrowDown: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowDown").CircleHalfArrowDownProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
67
+ readonly CircleHalfArrowLeft: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowLeft").CircleHalfArrowLeftProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
68
+ readonly CircleHalfArrowRight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowRight").CircleHalfArrowRightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
69
+ readonly CircleHalfArrowUp: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfArrowUp").CircleHalfArrowUpProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
70
+ readonly CircleHalfDottedChart2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CircleHalfDottedChart2").CircleHalfDottedChart2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
71
+ readonly ClockTime: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ClockTime").ClockTimeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
72
+ readonly CloneDashed3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneDashed3").CloneDashed3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
73
+ readonly CloneImageDashed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneImageDashed").CloneImageDashedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
74
+ readonly CloneVideoDashed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloneVideoDashed").CloneVideoDashedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
75
+ readonly CloudeCode: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CloudeCode").CloudeCodeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
76
+ readonly CoinStack: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CoinStack").CoinStackProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
77
+ readonly ConditionalLogic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ConditionalLogic").ConditionalLogicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
78
+ readonly Connection3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Connection3").Connection3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
79
+ readonly ConnectPlus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ConnectPlus").ConnectPlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
80
+ readonly CopyDelete: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CopyDelete").CopyDeleteProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
81
+ readonly CopyId: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/CopyId").CopyIdProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
82
+ readonly DarkLight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DarkLight").DarkLightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
83
+ readonly Deaf: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Deaf").DeafProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
84
+ readonly DependencyLink: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DependencyLink").DependencyLinkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
85
+ readonly DesktopDock: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DesktopDock").DesktopDockProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
86
+ readonly DiamondSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DiamondSparkle").DiamondSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
87
+ readonly DocumentScan: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DocumentScan").DocumentScanProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
88
+ readonly Dog2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Dog2").Dog2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
89
+ readonly DogLeash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DogLeash").DogLeashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
90
+ readonly DogSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DogSlash").DogSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
91
+ readonly DotFormation: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DotFormation").DotFormationProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
92
+ readonly DrawFinger: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/DrawFinger").DrawFingerProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
93
+ readonly Ear: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Ear").EarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
94
+ readonly EarSound: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EarSound").EarSoundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
95
+ readonly Embed: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Embed").EmbedProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
96
+ readonly EnterDoor: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EnterDoor").EnterDoorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
97
+ readonly EnterHome: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EnterHome").EnterHomeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
98
+ readonly ExitDoor: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ExitDoor").ExitDoorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
99
+ readonly Export2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Export2").Export2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
100
+ readonly EyeSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/EyeSparkle").EyeSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
101
+ readonly FaceRobot: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot").FaceRobotProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
102
+ readonly FaceRobot2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot2").FaceRobot2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
103
+ readonly FaceRobot3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FaceRobot3").FaceRobot3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
104
+ readonly FerrisWheel: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FerrisWheel").FerrisWheelProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
105
+ readonly FileExport: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FileExport").FileExportProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
106
+ readonly FlagMenu: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FlagMenu").FlagMenuProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
107
+ readonly FocusCenter: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FocusCenter").FocusCenterProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
108
+ readonly FoodOrder: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FoodOrder").FoodOrderProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
109
+ readonly FuelCan: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FuelCan").FuelCanProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
110
+ readonly FuelCan2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/FuelCan2").FuelCan2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
111
+ readonly Gear3Sparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Gear3Sparkle").Gear3SparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
112
+ readonly GridSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/GridSparkle").GridSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
113
+ readonly HandHoldingGlobe: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HandHoldingGlobe").HandHoldingGlobeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
114
+ readonly Handshake2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Handshake2").Handshake2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
115
+ readonly Haptic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Haptic").HapticProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
116
+ readonly HelpChat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HelpChat").HelpChatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
117
+ readonly HexagonSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HexagonSparkle").HexagonSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
118
+ readonly Hiking: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Hiking").HikingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
119
+ readonly History2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/History2").History2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
120
+ readonly HorseHead: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HorseHead").HorseHeadProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
121
+ readonly HouseDollarSign: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HouseDollarSign").HouseDollarSignProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
122
+ readonly HouseMinus2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/HouseMinus2").HouseMinus2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
123
+ readonly Images3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Images3").Images3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
124
+ readonly Img4k: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Img4k").Img4kProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
125
+ readonly InsertCrypto: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InsertCrypto").InsertCryptoProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
126
+ readonly InsertDollar: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InsertDollar").InsertDollarProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
127
+ readonly InstantMoney: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InstantMoney").InstantMoneyProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
128
+ readonly InvoiceIn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InvoiceIn").InvoiceInProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
129
+ readonly InwardFlow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/InwardFlow").InwardFlowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
130
+ readonly JoinedHands: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/JoinedHands").JoinedHandsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
131
+ readonly LawShield: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LawShield").LawShieldProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
132
+ readonly Lectern: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lectern").LecternProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
133
+ readonly Lectern2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Lectern2").Lectern2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
134
+ readonly LightSpark: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LightSpark").LightSparkProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
135
+ readonly LightSpark2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LightSpark2").LightSpark2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
136
+ readonly ListExport: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListExport").ListExportProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
137
+ readonly ListFavs3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListFavs3").ListFavs3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
138
+ readonly ListFavs4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ListFavs4").ListFavs4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
139
+ readonly LoadingStatus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LoadingStatus").LoadingStatusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
140
+ readonly LoadingStatus2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LoadingStatus2").LoadingStatus2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
141
+ readonly LockedChat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/LockedChat").LockedChatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
142
+ readonly MagicHat: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagicHat").MagicHatProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
143
+ readonly MagicRabbit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagicRabbit").MagicRabbitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
144
+ readonly Magnifier: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Magnifier").MagnifierProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
145
+ readonly MagnifierSparkle2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MagnifierSparkle2").MagnifierSparkle2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
146
+ readonly MediaLibrary2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MediaLibrary2").MediaLibrary2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
147
+ readonly Membership: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Membership").MembershipProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
148
+ readonly Menu4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Menu4").Menu4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
149
+ readonly MilitaryMedal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MilitaryMedal").MilitaryMedalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
150
+ readonly Minus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Minus").MinusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
151
+ readonly MobileCircuit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MobileCircuit").MobileCircuitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
152
+ readonly MoneyRefund: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoneyRefund").MoneyRefundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
153
+ readonly MoneyRefund2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoneyRefund2").MoneyRefund2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
154
+ readonly MoonStars: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MoonStars").MoonStarsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
155
+ readonly MotionAlongPath: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/MotionAlongPath").MotionAlongPathProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
156
+ readonly Msgs2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Msgs2").Msgs2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
157
+ readonly Navigation: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Navigation").NavigationProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
158
+ readonly NavigationHorizontal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/NavigationHorizontal").NavigationHorizontalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
159
+ readonly NavigationVertical: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/NavigationVertical").NavigationVerticalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
160
+ readonly ObjectSelection: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ObjectSelection").ObjectSelectionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
161
+ readonly OfficeUser: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OfficeUser").OfficeUserProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
162
+ readonly OpenExternal: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OpenExternal").OpenExternalProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
163
+ readonly OrbitSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OrbitSparkle").OrbitSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
164
+ readonly OutwardFlow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/OutwardFlow").OutwardFlowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
165
+ readonly PaperPlaneFast: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PaperPlaneFast").PaperPlaneFastProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
166
+ readonly Parachute: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Parachute").ParachuteProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
167
+ readonly Paw: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Paw").PawProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
168
+ readonly Peace: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Peace").PeaceProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
169
+ readonly PicnicTable: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PicnicTable").PicnicTableProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
170
+ readonly Pillow: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Pillow").PillowProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
171
+ readonly Playground: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Playground").PlaygroundProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
172
+ readonly Playlist4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Playlist4").Playlist4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
173
+ readonly Plug3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plug3").Plug3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
174
+ readonly Plug3Sparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plug3Sparkle").Plug3SparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
175
+ readonly PlugOff: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PlugOff").PlugOffProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
176
+ readonly PlugSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PlugSparkle").PlugSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
177
+ readonly Plus: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Plus").PlusProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
178
+ readonly PopEffect: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/PopEffect").PopEffectProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
179
+ readonly ProfileAnalytics: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProfileAnalytics").ProfileAnalyticsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
180
+ readonly ProfileBasic: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProfileBasic").ProfileBasicProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
181
+ readonly ProgressIndicator2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ProgressIndicator2").ProgressIndicator2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
182
+ readonly QuickActions: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/QuickActions").QuickActionsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
183
+ readonly QuickTimer: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/QuickTimer").QuickTimerProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
184
+ readonly Rabbit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rabbit").RabbitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
185
+ readonly Receipt3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Receipt3").Receipt3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
186
+ readonly Receipt4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Receipt4").Receipt4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
187
+ readonly Redo2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Redo2").Redo2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
188
+ readonly Redo3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Redo3").Redo3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
189
+ readonly Refresh3AnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refresh3AnticlockwiseSlash").Refresh3AnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
190
+ readonly Refresh3ClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refresh3ClockwiseSlash").Refresh3ClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
191
+ readonly RefreshAnticlockwise: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwise").RefreshAnticlockwiseProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
192
+ readonly RefreshAnticlockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshAnticlockwiseSlash").RefreshAnticlockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
193
+ readonly RefreshClockwiseSlash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RefreshClockwiseSlash").RefreshClockwiseSlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
194
+ readonly Refrigerator: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Refrigerator").RefrigeratorProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
195
+ readonly RemoteControl: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RemoteControl").RemoteControlProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
196
+ readonly RemoteControl2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RemoteControl2").RemoteControl2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
197
+ readonly ReportFile: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ReportFile").ReportFileProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
198
+ readonly Reposition: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Reposition").RepositionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
199
+ readonly Rerouting: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rerouting").ReroutingProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
200
+ readonly Robot2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot2").Robot2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
201
+ readonly Robot3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot3").Robot3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
202
+ readonly Robot4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Robot4").Robot4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
203
+ readonly RockOn: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RockOn").RockOnProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
204
+ readonly RopeStanchions: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/RopeStanchions").RopeStanchionsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
205
+ readonly Rotation3602: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Rotation3602").Rotation3602Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
206
+ readonly SavedItems2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SavedItems2").SavedItems2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
207
+ readonly ScaleImg4k: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScaleImg4k").ScaleImg4kProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
208
+ readonly ScanImage: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScanImage").ScanImageProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
209
+ readonly ScissorsSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ScissorsSparkle").ScissorsSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
210
+ readonly Seatbelt: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Seatbelt").SeatbeltProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
211
+ readonly ShakaHand: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShakaHand").ShakaHandProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
212
+ readonly ShapeRectangle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShapeRectangle").ShapeRectangleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
213
+ readonly Shovel: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Shovel").ShovelProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
214
+ readonly ShuffleSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/ShuffleSparkle").ShuffleSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
215
+ readonly SidebarEdit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SidebarEdit").SidebarEditProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
216
+ readonly SideProfileQuestion: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SideProfileQuestion").SideProfileQuestionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
217
+ readonly SideProfileSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SideProfileSparkle").SideProfileSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
218
+ readonly SlashCircle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SlashCircle").SlashCircleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
219
+ readonly Sliders4: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sliders4").Sliders4Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
220
+ readonly Snail: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Snail").SnailProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
221
+ readonly Spiral: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Spiral").SpiralProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
222
+ readonly SplitView: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SplitView").SplitViewProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
223
+ readonly SquareDashedSearchSparkle: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquareDashedSearchSparkle").SquareDashedSearchSparkleProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
224
+ readonly SquareDashedText: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquareDashedText").SquareDashedTextProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
225
+ readonly SquarePath: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SquarePath").SquarePathProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
226
+ readonly Star2Slash: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Star2Slash").Star2SlashProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
227
+ readonly StopSign: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/StopSign").StopSignProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
228
+ readonly StopwatchBolt: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/StopwatchBolt").StopwatchBoltProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
229
+ readonly SummitFlag: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/SummitFlag").SummitFlagProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
230
+ readonly Sun: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sun").SunProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
231
+ readonly Sunrise2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Sunrise2").Sunrise2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
232
+ readonly Task: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Task").TaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
233
+ readonly Task2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Task2").Task2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
234
+ readonly TaskDebug: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TaskDebug").TaskDebugProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
235
+ readonly TaskSearch: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TaskSearch").TaskSearchProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
236
+ readonly Teepee: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Teepee").TeepeeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
237
+ readonly TextAdjust: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TextAdjust").TextAdjustProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
238
+ readonly TheatreMask: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TheatreMask").TheatreMaskProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
239
+ readonly TheatreMask2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TheatreMask2").TheatreMask2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
240
+ readonly TimerProgress: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TimerProgress").TimerProgressProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
241
+ readonly TimerProgress2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TimerProgress2").TimerProgress2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
242
+ readonly TransactionSplit: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/TransactionSplit").TransactionSplitProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
243
+ readonly Undo2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Undo2").Undo2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
244
+ readonly Undo3: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Undo3").Undo3Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
245
+ readonly UnicornHead: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UnicornHead").UnicornHeadProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
246
+ readonly UserContact: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UserContact").UserContactProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
247
+ readonly UserVoice2: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/UserVoice2").UserVoice2Props, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
248
+ readonly VipBadge: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/VipBadge").VipBadgeProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
249
+ readonly VoiceCaption: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/VoiceCaption").VoiceCaptionProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
250
+ readonly WalletCoins: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/WalletCoins").WalletCoinsProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
251
+ readonly Weight: import("react").ForwardRefExoticComponent<Omit<import("./icons/duo/Weight").WeightProps, "ref"> & import("react").RefAttributes<SVGSVGElement>>;
249
252
  };
250
253
  };
251
254
  export declare const generatedDefaultIconVariant: "duo";