@nice2dev/icons-business 1.0.10

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 (64) hide show
  1. package/README.md +243 -0
  2. package/dist/accounting.d.ts +59 -0
  3. package/dist/accounting.d.ts.map +1 -0
  4. package/dist/analytics.d.ts +68 -0
  5. package/dist/analytics.d.ts.map +1 -0
  6. package/dist/communication.d.ts +50 -0
  7. package/dist/communication.d.ts.map +1 -0
  8. package/dist/createBusinessIcon.d.ts +37 -0
  9. package/dist/createBusinessIcon.d.ts.map +1 -0
  10. package/dist/crm.d.ts +49 -0
  11. package/dist/crm.d.ts.map +1 -0
  12. package/dist/ecommerce.d.ts +66 -0
  13. package/dist/ecommerce.d.ts.map +1 -0
  14. package/dist/finance.d.ts +21 -0
  15. package/dist/finance.d.ts.map +1 -0
  16. package/dist/governance.d.ts +9 -0
  17. package/dist/governance.d.ts.map +1 -0
  18. package/dist/healthcare.d.ts +9 -0
  19. package/dist/healthcare.d.ts.map +1 -0
  20. package/dist/hr.d.ts +18 -0
  21. package/dist/hr.d.ts.map +1 -0
  22. package/dist/index.cjs +2 -0
  23. package/dist/index.cjs.map +1 -0
  24. package/dist/index.d.ts +817 -0
  25. package/dist/index.d.ts.map +1 -0
  26. package/dist/index.mjs +14838 -0
  27. package/dist/index.mjs.map +1 -0
  28. package/dist/industry.d.ts +11 -0
  29. package/dist/industry.d.ts.map +1 -0
  30. package/dist/legal.d.ts +52 -0
  31. package/dist/legal.d.ts.map +1 -0
  32. package/dist/logistics.d.ts +54 -0
  33. package/dist/logistics.d.ts.map +1 -0
  34. package/dist/marketing.d.ts +60 -0
  35. package/dist/marketing.d.ts.map +1 -0
  36. package/dist/office.d.ts +20 -0
  37. package/dist/office.d.ts.map +1 -0
  38. package/dist/production.d.ts +55 -0
  39. package/dist/production.d.ts.map +1 -0
  40. package/dist/project.d.ts +18 -0
  41. package/dist/project.d.ts.map +1 -0
  42. package/dist/purchasing.d.ts +52 -0
  43. package/dist/purchasing.d.ts.map +1 -0
  44. package/dist/sales.d.ts +52 -0
  45. package/dist/sales.d.ts.map +1 -0
  46. package/dist/sectors.d.ts +11 -0
  47. package/dist/sectors.d.ts.map +1 -0
  48. package/dist/startup.d.ts +50 -0
  49. package/dist/startup.d.ts.map +1 -0
  50. package/dist/stories/BusinessIcon.stories.d.ts +30 -0
  51. package/dist/stories/BusinessIcon.stories.d.ts.map +1 -0
  52. package/dist/stories/IconGallery.stories.d.ts +15 -0
  53. package/dist/stories/IconGallery.stories.d.ts.map +1 -0
  54. package/dist/strategy.d.ts +46 -0
  55. package/dist/strategy.d.ts.map +1 -0
  56. package/dist/support.d.ts +52 -0
  57. package/dist/support.d.ts.map +1 -0
  58. package/dist/sustainability.d.ts +9 -0
  59. package/dist/sustainability.d.ts.map +1 -0
  60. package/dist/types.d.ts +124 -0
  61. package/dist/types.d.ts.map +1 -0
  62. package/dist/warehouse.d.ts +55 -0
  63. package/dist/warehouse.d.ts.map +1 -0
  64. package/package.json +76 -0
@@ -0,0 +1,817 @@
1
+ /**
2
+ * @file index.ts
3
+ * @description Main entry point for @nice2dev/icons-business
4
+ * Animated business icons for enterprise applications
5
+ */
6
+ export type { BusinessIconProps, BusinessIconAnimation, BusinessIconName, FinanceIconName, OfficeIconName, HRIconName, ProjectIconName, AccountingIconName, ProductionIconName, WarehouseIconName, CRMIconName, SalesIconName, PurchasingIconName, MarketingIconName, AnalyticsIconName, LegalIconName, CommunicationIconName, EcommerceIconName, SupportIconName, StrategyIconName, StartupIconName, LogisticsIconName, AnimationDuration, AnimationConfig, IconComponent, CreateBusinessIconOptions, } from './types';
7
+ export { createBusinessIcon, getBusinessAnimation, iconDefaults, type SimpleIconOptions, } from './createBusinessIcon';
8
+ export { ChartLineIcon, ChartBarIcon, ChartPieIcon, DollarIcon, EuroIcon, InvoiceIcon, WalletIcon, CreditCardIcon, BankIcon, PiggyBankIcon, CoinStackIcon, GrowthIcon, LossIcon, BudgetIcon, ReceiptIcon, LoanIcon, TreasuryIcon, AccrualsIcon, } from './finance';
9
+ export { BriefcaseIcon, ClipboardIcon, CalendarIcon, DeskIcon, PrinterIcon, ScannerIcon, FolderIcon, FileIcon, DocumentIcon, StampIcon, PaperClipIcon, StaplerIcon, NotebookIcon, PenIcon, CoffeeIcon, SurveyIcon, TemplateIcon, } from './office';
10
+ export { TeamIcon, MeetingIcon, HireIcon, HandshakeIcon, IdCardIcon, OrgChartIcon, PerformanceIcon, InterviewIcon, ContractIcon, OnboardingIcon, PayrollIcon, BenefitsIcon, TrainingIcon, FeedbackIcon, DiversityIcon, } from './hr';
11
+ export { KanbanIcon, TimelineIcon, MilestoneIcon, SprintIcon, BacklogIcon, TaskIcon, DeadlineIcon, ProgressIcon, RoadmapIcon, GanttIcon, AgileIcon, ScrumIcon, PlanningIcon, RetrospectiveIcon, VelocityIcon, } from './project';
12
+ export { LedgerIcon, JournalIcon, BalanceSheetIcon, InvoiceIcon as AccountingInvoiceIcon, ReceiptIcon as AccountingReceiptIcon, TaxIcon, AuditIcon, DepreciationIcon, AmortizationIcon, AccountsPayableIcon, AccountsReceivableIcon, TrialBalanceIcon, CashFlowIcon, ProfitLossIcon, GeneralLedgerIcon, } from './accounting';
13
+ export { FactoryIcon, AssemblyLineIcon, QualityIcon, MaintenanceIcon, ShiftIcon, MachineIcon, ConveyorIcon, RobotIcon, WorkstationIcon, BatchIcon, ProductionOrderIcon, BOMIcon, RoutingIcon, CapacityIcon, } from './production';
14
+ export { ForkliftIcon, PalletIcon, BinIcon, BarcodeIcon, QRCodeIcon, PickingIcon, ShippingIcon, ReceivingIcon, RackIcon, InventoryIcon, StockIcon, LocationIcon, ZoneIcon, DockIcon, } from './warehouse';
15
+ export { CustomerIcon, LeadIcon, OpportunityIcon, DealIcon, PipelineIcon, CampaignIcon, ContactIcon, AccountIcon, ActivityIcon, TouchpointIcon, SegmentIcon, NurtureIcon, } from './crm';
16
+ export { QuoteIcon, OrderIcon, ContractIcon as SalesContractIcon, CommissionIcon, TerritoryIcon, DiscountIcon, PricingIcon, NegotiationIcon, ProposalIcon, ClosingIcon, ForecastIcon, TargetIcon, UpsellIcon, } from './sales';
17
+ export { RequisitionIcon, PurchaseOrderIcon, RFQIcon, SupplierIcon, VendorIcon, SourcingIcon, ApprovalIcon, GoodsReceivingIcon, BiddingIcon, ProcurementContractIcon, CompareIcon, SavingsIcon, SpendIcon, } from './purchasing';
18
+ export { BillboardIcon, MegaphoneIcon, AdIcon, BannerIcon, SponsoredIcon, SEOIcon, SEMIcon, ContentMarketingIcon, EmailMarketingIcon, SocialMarketingIcon, InfluencerIcon, MarketingCampaignIcon, ABTestingIcon, ConversionIcon, MarketingFunnelIcon, ROIIcon, CTRIcon, MarketingImpressionsIcon, EngagementRateIcon, BounceRateIcon, BrandIcon, LogoDesignIcon, BrandAwarenessIcon, RebrandingIcon, PromotionIcon, FlashSaleIcon, CouponIcon, GiveawayIcon, } from './marketing';
19
+ export { DashboardIcon, KPIIcon, WidgetIcon, RealTimeDataIcon, AreaChartIcon, ScatterPlotIcon, BubbleChartIcon, DonutChartIcon, TreemapIcon, HeatmapIcon, MetricCardIcon, GrowthMetricIcon, DeclineMetricIcon, TargetGoalIcon, BenchmarkIcon, AnalyticsReportIcon, InsightsIcon, TrendAnalysisIcon, ComparisonIcon, DataFilterIcon, DataExportIcon, DataImportIcon, DataRefreshIcon, BICubeIcon, DataWarehouseIcon, PredictiveAnalyticsIcon, DigitalTwinIcon, AlgorithmIcon, PredictionIcon, DataNarrativeIcon, MeetingROIIcon, ProcessDebtIcon, } from './analytics';
20
+ export { ContractIcon as LegalContractIcon, AgreementIcon, NDAIcon, TermsConditionsIcon, LegalDocumentIcon, ComplianceIcon, GDPRIcon, RegulationIcon, LegalAuditIcon, CertificateIcon, CopyrightIcon, TrademarkIcon, RegisteredIcon, PatentIcon, LegalLicenseIcon, GavelIcon, ScalesJusticeIcon, JuryIcon, VerdictIcon, LawFirmIcon, LawyerIcon, WitnessIcon, BriefcaseLegalIcon, SignatureIcon, } from './legal';
21
+ export { MeetingIcon as BusinessMeetingIcon, VideoConferenceIcon, ConferenceRoomIcon, WebinarIcon, PresentationIcon, PhoneCallIcon, IncomingCallIcon, OutgoingCallIcon, MissedCallIcon, ConferenceCallIcon, BusinessEmailIcon, InstantMessageIcon, InboxIcon, OutboxIcon, NewsletterIcon, TeamChatIcon, DiscussionIcon, FeedbackIcon as CommunicationFeedbackIcon, AnnouncementIcon, ScheduleMeetingIcon, AgendaIcon, RSVPIcon, MinutesIcon, } from './communication';
22
+ export { ShoppingCartIcon, AddToCartIcon, ShoppingBagIcon, WishlistIcon, ProductIcon, CategoryIcon, CheckoutIcon, CreditCardIcon as EcommerceCreditCardIcon, PaymentIcon, WalletIcon as EcommerceWalletIcon, ReceiptIcon as EcommerceReceiptIcon, RefundIcon, OrderIcon as EcommerceOrderIcon, PendingOrderIcon, ShippedIcon, DeliveredIcon, ReturnIcon, InventoryIcon as EcommerceInventoryIcon, InStockIcon, OutOfStockIcon, LowStockIcon, PriceTagIcon, DiscountIcon as EcommerceDiscountIcon, SaleBadgeIcon, ComparePricesIcon, StarRatingIcon, ReviewIcon, EscrowIcon, FreelancerIcon, AuctionIcon, PatronageIcon, } from './ecommerce';
23
+ export { HelpDeskIcon, SupportAgentIcon, QuestionIcon, FAQIcon, KnowledgeBaseIcon, SupportTicketIcon, NewTicketIcon, OpenTicketIcon, ClosedTicketIcon, EscalateIcon, LiveChatIcon, ChatbotIcon, EmailSupportIcon, PhoneSupportIcon, SelfServiceIcon, SLAIcon, ResponseTimeIcon, CustomerSatisfactionIcon, NPSIcon, UserGuideIcon, TutorialIcon, HelpArticleIcon, TroubleshootingIcon, OnboardingIcon as SupportOnboardingIcon, } from './support';
24
+ export { TargetIcon as StrategyTargetIcon, MissionIcon, VisionIcon, OKRIcon, KPIDashboardIcon, GrowthIcon as StrategyGrowthIcon, ScaleUpIcon, MarketExpansionIcon, DiversificationIcon, StrategicPlanningIcon, SWOTIcon, CompetitiveAnalysisIcon, RoadmapIcon as StrategyRoadmapIcon, MilestoneIcon as StrategyMilestoneIcon, DecisionIcon, PriorityMatrixIcon, InnovationIcon, RiskAssessmentIcon, OpportunityIcon as StrategyOpportunityIcon, PivotIcon, ExitStrategyIcon, } from './strategy';
25
+ export { SeedFundingIcon, SeriesAIcon, VentureCapitalIcon, AngelInvestorIcon, CrowdfundingIcon, ValuationIcon, MVPIcon, ProductMarketFitIcon, TractionIcon, LaunchIcon, ScaleIcon, PitchDeckIcon, DemoDayIcon, ElevatorPitchIcon, FounderIcon, CoFounderIcon, StartupTeamIcon, AdvisorIcon, BusinessModelIcon, RevenueModelIcon, SubscriptionModelIcon, FreemiumIcon, StartupPivotIcon, } from './startup';
26
+ export { ShippingBoxIcon, DeliveryTruckIcon, ExpressDeliveryIcon, FreeShippingIcon, InternationalShippingIcon, PackageTrackingIcon, InTransitIcon, OutForDeliveryIcon, LogisticsDeliveredIcon, ReturnToSenderIcon, SupplyChainIcon, SupplierIcon as LogisticsSupplierIcon, DistributionCenterIcon, LastMileIcon, PalletIcon as LogisticsPalletIcon, ForkliftIcon as LogisticsForkliftIcon, BarcodeScanLogisticsIcon, PickAndPackIcon, AirFreightIcon, SeaFreightIcon, RailFreightIcon, DroneDeliveryIcon, CustomsClearanceIcon, BillOfLadingIcon, ShippingLabelIcon, } from './logistics';
27
+ export { ConstructionIcon, FieldServiceIcon, GovernmentIcon, NGOIcon } from './sectors';
28
+ export { MicroscopeBusinessIcon, NurseIcon, PatientIcon } from './healthcare';
29
+ export { VotingIcon, DebateIcon, BoardMeetingIcon } from './governance';
30
+ export { AgroIcon, WindMillIcon, TelecomIcon, RetailStoreIcon } from './industry';
31
+ export { CarbonIcon, WeatherRiskIcon, ClaimIcon } from './sustainability';
32
+ /** All Finance icons as a collection */
33
+ export declare const FinanceIcons: {
34
+ ChartLine: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
35
+ ChartBar: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
36
+ ChartPie: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
37
+ Dollar: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
38
+ Euro: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
39
+ Invoice: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
40
+ Wallet: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
41
+ CreditCard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
42
+ Bank: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
43
+ PiggyBank: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
44
+ CoinStack: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
45
+ Growth: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
46
+ Loss: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
47
+ Budget: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
48
+ Receipt: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
49
+ };
50
+ /** All Office icons as a collection */
51
+ export declare const OfficeIcons: {
52
+ Briefcase: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
53
+ Clipboard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
54
+ Calendar: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
55
+ Desk: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
56
+ Printer: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
57
+ Scanner: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
58
+ Folder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
59
+ File: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
60
+ Document: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
61
+ Stamp: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
62
+ PaperClip: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
63
+ Stapler: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
64
+ Notebook: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
65
+ Pen: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
66
+ Coffee: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
67
+ };
68
+ /** All HR icons as a collection */
69
+ export declare const HRIcons: {
70
+ Team: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
71
+ Meeting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
72
+ Hire: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
73
+ Handshake: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
74
+ IdCard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
75
+ OrgChart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
76
+ Performance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
77
+ Interview: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
78
+ Contract: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
79
+ Onboarding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
80
+ Payroll: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
81
+ Benefits: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
82
+ Training: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
83
+ Feedback: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
84
+ Diversity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
85
+ };
86
+ /** All Project Management icons as a collection */
87
+ export declare const ProjectIcons: {
88
+ Kanban: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
89
+ Timeline: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
90
+ Milestone: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
91
+ Sprint: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
92
+ Backlog: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
93
+ Task: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
94
+ Deadline: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
95
+ Progress: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
96
+ Roadmap: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
97
+ Gantt: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
98
+ Agile: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
99
+ Scrum: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
100
+ Planning: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
101
+ Retrospective: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
102
+ Velocity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
103
+ };
104
+ /** All Accounting icons as a collection */
105
+ export declare const AccountingIcons: {
106
+ Ledger: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
107
+ Journal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
108
+ BalanceSheet: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
109
+ Invoice: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
110
+ Receipt: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
111
+ Tax: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
112
+ Audit: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
113
+ Depreciation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
114
+ Amortization: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
115
+ AccountsPayable: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
116
+ AccountsReceivable: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
117
+ TrialBalance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
118
+ CashFlow: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
119
+ ProfitLoss: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
120
+ GeneralLedger: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
121
+ };
122
+ /** All Production icons as a collection */
123
+ export declare const ProductionIcons: {
124
+ Factory: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
125
+ AssemblyLine: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
126
+ Quality: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
127
+ Maintenance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
128
+ Shift: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
129
+ Machine: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
130
+ Conveyor: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
131
+ Robot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
132
+ Workstation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
133
+ Batch: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
134
+ ProductionOrder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
135
+ BOM: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
136
+ Routing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
137
+ Capacity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
138
+ };
139
+ /** All Warehouse icons as a collection */
140
+ export declare const WarehouseIcons: {
141
+ Forklift: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
142
+ Pallet: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
143
+ Bin: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
144
+ Barcode: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
145
+ QRCode: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
146
+ Picking: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
147
+ Shipping: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
148
+ Receiving: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
149
+ Rack: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
150
+ Inventory: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
151
+ Stock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
152
+ Location: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
153
+ Zone: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
154
+ Dock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
155
+ };
156
+ /** All CRM icons as a collection */
157
+ export declare const CRMIcons: {
158
+ Customer: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
159
+ Lead: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
160
+ Opportunity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
161
+ Deal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
162
+ Pipeline: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
163
+ Campaign: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
164
+ Contact: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
165
+ Account: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
166
+ Activity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
167
+ Touchpoint: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
168
+ Segment: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
169
+ Nurture: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
170
+ };
171
+ /** All Sales icons as a collection */
172
+ export declare const SalesIcons: {
173
+ Quote: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
174
+ Order: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
175
+ Contract: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
176
+ Commission: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
177
+ Territory: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
178
+ Discount: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
179
+ Pricing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
180
+ Negotiation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
181
+ Proposal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
182
+ Closing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
183
+ Forecast: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
184
+ Target: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
185
+ Upsell: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
186
+ };
187
+ /** All Purchasing icons as a collection */
188
+ export declare const PurchasingIcons: {
189
+ Requisition: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
190
+ PurchaseOrder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
191
+ RFQ: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
192
+ Supplier: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
193
+ Vendor: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
194
+ Sourcing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
195
+ Approval: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
196
+ GoodsReceiving: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
197
+ Bidding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
198
+ ProcurementContract: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
199
+ Compare: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
200
+ Savings: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
201
+ Spend: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
202
+ };
203
+ /** All Marketing icons as a collection */
204
+ export declare const MarketingIcons: {
205
+ Billboard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
206
+ Megaphone: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
207
+ Ad: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
208
+ Banner: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
209
+ Sponsored: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
210
+ SEO: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
211
+ SEM: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
212
+ ContentMarketing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
213
+ EmailMarketing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
214
+ SocialMarketing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
215
+ Influencer: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
216
+ MarketingCampaign: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
217
+ ABTesting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
218
+ Conversion: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
219
+ MarketingFunnel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
220
+ ROI: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
221
+ CTR: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
222
+ MarketingImpressions: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
223
+ EngagementRate: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
224
+ BounceRate: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
225
+ Brand: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
226
+ LogoDesign: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
227
+ BrandAwareness: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
228
+ Rebranding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
229
+ Promotion: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
230
+ FlashSale: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
231
+ Coupon: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
232
+ Giveaway: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
233
+ };
234
+ /** All Analytics icons as a collection */
235
+ export declare const AnalyticsIcons: {
236
+ Dashboard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
237
+ KPI: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
238
+ Widget: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
239
+ RealTimeData: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
240
+ AreaChart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
241
+ ScatterPlot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
242
+ BubbleChart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
243
+ DonutChart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
244
+ Treemap: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
245
+ Heatmap: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
246
+ MetricCard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
247
+ GrowthMetric: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
248
+ DeclineMetric: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
249
+ TargetGoal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
250
+ Benchmark: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
251
+ AnalyticsReport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
252
+ Insights: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
253
+ TrendAnalysis: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
254
+ Comparison: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
255
+ DataFilter: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
256
+ DataExport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
257
+ DataImport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
258
+ DataRefresh: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
259
+ BICube: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
260
+ DataWarehouse: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
261
+ PredictiveAnalytics: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
262
+ };
263
+ /** All Legal icons as a collection */
264
+ export declare const LegalIcons: {
265
+ Contract: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
266
+ Agreement: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
267
+ NDA: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
268
+ TermsConditions: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
269
+ LegalDocument: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
270
+ Compliance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
271
+ GDPR: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
272
+ Regulation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
273
+ LegalAudit: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
274
+ Certificate: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
275
+ Copyright: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
276
+ Trademark: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
277
+ Registered: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
278
+ Patent: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
279
+ LegalLicense: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
280
+ Gavel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
281
+ ScalesJustice: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
282
+ Jury: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
283
+ Verdict: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
284
+ LawFirm: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
285
+ Lawyer: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
286
+ Witness: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
287
+ BriefcaseLegal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
288
+ Signature: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
289
+ };
290
+ /** All Communication icons as a collection */
291
+ export declare const CommunicationIcons: {
292
+ Meeting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
293
+ VideoConference: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
294
+ ConferenceRoom: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
295
+ Webinar: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
296
+ Presentation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
297
+ PhoneCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
298
+ IncomingCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
299
+ OutgoingCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
300
+ MissedCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
301
+ ConferenceCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
302
+ BusinessEmail: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
303
+ InstantMessage: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
304
+ Inbox: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
305
+ Outbox: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
306
+ Newsletter: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
307
+ TeamChat: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
308
+ Discussion: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
309
+ Feedback: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
310
+ Announcement: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
311
+ ScheduleMeeting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
312
+ Agenda: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
313
+ RSVP: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
314
+ Minutes: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
315
+ };
316
+ /** All E-commerce icons as a collection */
317
+ export declare const EcommerceIcons: {
318
+ ShoppingCart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
319
+ AddToCart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
320
+ ShoppingBag: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
321
+ Wishlist: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
322
+ Product: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
323
+ Category: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
324
+ Checkout: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
325
+ CreditCard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
326
+ Payment: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
327
+ Wallet: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
328
+ Receipt: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
329
+ Refund: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
330
+ Order: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
331
+ PendingOrder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
332
+ Shipped: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
333
+ Delivered: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
334
+ Return: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
335
+ Inventory: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
336
+ InStock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
337
+ OutOfStock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
338
+ LowStock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
339
+ PriceTag: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
340
+ Discount: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
341
+ SaleBadge: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
342
+ ComparePrices: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
343
+ StarRating: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
344
+ Review: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
345
+ };
346
+ /** All Support icons as a collection */
347
+ export declare const SupportIcons: {
348
+ HelpDesk: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
349
+ SupportAgent: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
350
+ Question: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
351
+ FAQ: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
352
+ KnowledgeBase: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
353
+ SupportTicket: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
354
+ NewTicket: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
355
+ OpenTicket: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
356
+ ClosedTicket: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
357
+ Escalate: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
358
+ LiveChat: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
359
+ Chatbot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
360
+ EmailSupport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
361
+ PhoneSupport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
362
+ SelfService: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
363
+ SLA: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
364
+ ResponseTime: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
365
+ CustomerSatisfaction: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
366
+ NPS: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
367
+ UserGuide: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
368
+ Tutorial: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
369
+ HelpArticle: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
370
+ Troubleshooting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
371
+ Onboarding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
372
+ };
373
+ /** All Strategy icons as a collection */
374
+ export declare const StrategyIcons: {
375
+ Target: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
376
+ Mission: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
377
+ Vision: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
378
+ OKR: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
379
+ KPIDashboard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
380
+ Growth: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
381
+ ScaleUp: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
382
+ MarketExpansion: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
383
+ Diversification: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
384
+ StrategicPlanning: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
385
+ SWOT: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
386
+ CompetitiveAnalysis: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
387
+ Roadmap: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
388
+ Milestone: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
389
+ Decision: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
390
+ PriorityMatrix: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
391
+ Innovation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
392
+ RiskAssessment: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
393
+ Opportunity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
394
+ Pivot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
395
+ ExitStrategy: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
396
+ };
397
+ /** All Startup icons as a collection */
398
+ export declare const StartupIcons: {
399
+ SeedFunding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
400
+ SeriesA: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
401
+ VentureCapital: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
402
+ AngelInvestor: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
403
+ Crowdfunding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
404
+ Valuation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
405
+ MVP: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
406
+ ProductMarketFit: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
407
+ Traction: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
408
+ Launch: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
409
+ Scale: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
410
+ PitchDeck: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
411
+ DemoDay: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
412
+ ElevatorPitch: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
413
+ Founder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
414
+ CoFounder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
415
+ StartupTeam: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
416
+ Advisor: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
417
+ BusinessModel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
418
+ RevenueModel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
419
+ SubscriptionModel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
420
+ Freemium: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
421
+ StartupPivot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
422
+ };
423
+ /** All Logistics icons as a collection */
424
+ export declare const LogisticsIcons: {
425
+ ShippingBox: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
426
+ DeliveryTruck: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
427
+ ExpressDelivery: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
428
+ FreeShipping: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
429
+ InternationalShipping: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
430
+ PackageTracking: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
431
+ InTransit: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
432
+ OutForDelivery: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
433
+ LogisticsDelivered: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
434
+ ReturnToSender: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
435
+ SupplyChain: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
436
+ Supplier: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
437
+ DistributionCenter: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
438
+ LastMile: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
439
+ Pallet: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
440
+ Forklift: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
441
+ BarcodeScanLogistics: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
442
+ PickAndPack: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
443
+ AirFreight: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
444
+ SeaFreight: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
445
+ RailFreight: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
446
+ DroneDelivery: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
447
+ CustomsClearance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
448
+ BillOfLading: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
449
+ ShippingLabel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
450
+ };
451
+ /** All Business icons combined */
452
+ export declare const BusinessIcons: {
453
+ ShippingBox: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
454
+ DeliveryTruck: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
455
+ ExpressDelivery: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
456
+ FreeShipping: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
457
+ InternationalShipping: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
458
+ PackageTracking: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
459
+ InTransit: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
460
+ OutForDelivery: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
461
+ LogisticsDelivered: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
462
+ ReturnToSender: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
463
+ SupplyChain: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
464
+ Supplier: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
465
+ DistributionCenter: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
466
+ LastMile: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
467
+ Pallet: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
468
+ Forklift: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
469
+ BarcodeScanLogistics: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
470
+ PickAndPack: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
471
+ AirFreight: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
472
+ SeaFreight: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
473
+ RailFreight: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
474
+ DroneDelivery: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
475
+ CustomsClearance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
476
+ BillOfLading: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
477
+ ShippingLabel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
478
+ SeedFunding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
479
+ SeriesA: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
480
+ VentureCapital: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
481
+ AngelInvestor: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
482
+ Crowdfunding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
483
+ Valuation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
484
+ MVP: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
485
+ ProductMarketFit: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
486
+ Traction: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
487
+ Launch: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
488
+ Scale: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
489
+ PitchDeck: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
490
+ DemoDay: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
491
+ ElevatorPitch: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
492
+ Founder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
493
+ CoFounder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
494
+ StartupTeam: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
495
+ Advisor: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
496
+ BusinessModel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
497
+ RevenueModel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
498
+ SubscriptionModel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
499
+ Freemium: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
500
+ StartupPivot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
501
+ Target: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
502
+ Mission: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
503
+ Vision: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
504
+ OKR: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
505
+ KPIDashboard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
506
+ Growth: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
507
+ ScaleUp: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
508
+ MarketExpansion: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
509
+ Diversification: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
510
+ StrategicPlanning: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
511
+ SWOT: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
512
+ CompetitiveAnalysis: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
513
+ Roadmap: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
514
+ Milestone: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
515
+ Decision: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
516
+ PriorityMatrix: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
517
+ Innovation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
518
+ RiskAssessment: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
519
+ Opportunity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
520
+ Pivot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
521
+ ExitStrategy: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
522
+ HelpDesk: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
523
+ SupportAgent: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
524
+ Question: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
525
+ FAQ: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
526
+ KnowledgeBase: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
527
+ SupportTicket: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
528
+ NewTicket: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
529
+ OpenTicket: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
530
+ ClosedTicket: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
531
+ Escalate: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
532
+ LiveChat: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
533
+ Chatbot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
534
+ EmailSupport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
535
+ PhoneSupport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
536
+ SelfService: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
537
+ SLA: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
538
+ ResponseTime: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
539
+ CustomerSatisfaction: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
540
+ NPS: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
541
+ UserGuide: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
542
+ Tutorial: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
543
+ HelpArticle: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
544
+ Troubleshooting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
545
+ Onboarding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
546
+ ShoppingCart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
547
+ AddToCart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
548
+ ShoppingBag: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
549
+ Wishlist: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
550
+ Product: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
551
+ Category: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
552
+ Checkout: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
553
+ CreditCard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
554
+ Payment: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
555
+ Wallet: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
556
+ Receipt: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
557
+ Refund: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
558
+ Order: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
559
+ PendingOrder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
560
+ Shipped: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
561
+ Delivered: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
562
+ Return: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
563
+ Inventory: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
564
+ InStock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
565
+ OutOfStock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
566
+ LowStock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
567
+ PriceTag: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
568
+ Discount: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
569
+ SaleBadge: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
570
+ ComparePrices: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
571
+ StarRating: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
572
+ Review: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
573
+ Meeting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
574
+ VideoConference: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
575
+ ConferenceRoom: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
576
+ Webinar: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
577
+ Presentation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
578
+ PhoneCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
579
+ IncomingCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
580
+ OutgoingCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
581
+ MissedCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
582
+ ConferenceCall: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
583
+ BusinessEmail: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
584
+ InstantMessage: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
585
+ Inbox: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
586
+ Outbox: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
587
+ Newsletter: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
588
+ TeamChat: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
589
+ Discussion: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
590
+ Feedback: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
591
+ Announcement: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
592
+ ScheduleMeeting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
593
+ Agenda: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
594
+ RSVP: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
595
+ Minutes: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
596
+ Contract: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
597
+ Agreement: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
598
+ NDA: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
599
+ TermsConditions: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
600
+ LegalDocument: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
601
+ Compliance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
602
+ GDPR: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
603
+ Regulation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
604
+ LegalAudit: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
605
+ Certificate: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
606
+ Copyright: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
607
+ Trademark: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
608
+ Registered: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
609
+ Patent: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
610
+ LegalLicense: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
611
+ Gavel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
612
+ ScalesJustice: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
613
+ Jury: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
614
+ Verdict: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
615
+ LawFirm: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
616
+ Lawyer: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
617
+ Witness: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
618
+ BriefcaseLegal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
619
+ Signature: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
620
+ Dashboard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
621
+ KPI: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
622
+ Widget: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
623
+ RealTimeData: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
624
+ AreaChart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
625
+ ScatterPlot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
626
+ BubbleChart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
627
+ DonutChart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
628
+ Treemap: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
629
+ Heatmap: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
630
+ MetricCard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
631
+ GrowthMetric: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
632
+ DeclineMetric: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
633
+ TargetGoal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
634
+ Benchmark: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
635
+ AnalyticsReport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
636
+ Insights: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
637
+ TrendAnalysis: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
638
+ Comparison: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
639
+ DataFilter: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
640
+ DataExport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
641
+ DataImport: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
642
+ DataRefresh: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
643
+ BICube: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
644
+ DataWarehouse: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
645
+ PredictiveAnalytics: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
646
+ Billboard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
647
+ Megaphone: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
648
+ Ad: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
649
+ Banner: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
650
+ Sponsored: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
651
+ SEO: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
652
+ SEM: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
653
+ ContentMarketing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
654
+ EmailMarketing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
655
+ SocialMarketing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
656
+ Influencer: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
657
+ MarketingCampaign: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
658
+ ABTesting: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
659
+ Conversion: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
660
+ MarketingFunnel: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
661
+ ROI: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
662
+ CTR: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
663
+ MarketingImpressions: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
664
+ EngagementRate: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
665
+ BounceRate: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
666
+ Brand: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
667
+ LogoDesign: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
668
+ BrandAwareness: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
669
+ Rebranding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
670
+ Promotion: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
671
+ FlashSale: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
672
+ Coupon: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
673
+ Giveaway: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
674
+ Requisition: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
675
+ PurchaseOrder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
676
+ RFQ: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
677
+ Vendor: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
678
+ Sourcing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
679
+ Approval: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
680
+ GoodsReceiving: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
681
+ Bidding: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
682
+ ProcurementContract: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
683
+ Compare: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
684
+ Savings: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
685
+ Spend: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
686
+ Quote: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
687
+ Commission: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
688
+ Territory: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
689
+ Pricing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
690
+ Negotiation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
691
+ Proposal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
692
+ Closing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
693
+ Forecast: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
694
+ Upsell: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
695
+ Customer: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
696
+ Lead: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
697
+ Deal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
698
+ Pipeline: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
699
+ Campaign: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
700
+ Contact: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
701
+ Account: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
702
+ Activity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
703
+ Touchpoint: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
704
+ Segment: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
705
+ Nurture: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
706
+ Bin: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
707
+ Barcode: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
708
+ QRCode: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
709
+ Picking: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
710
+ Shipping: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
711
+ Receiving: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
712
+ Rack: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
713
+ Stock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
714
+ Location: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
715
+ Zone: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
716
+ Dock: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
717
+ Factory: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
718
+ AssemblyLine: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
719
+ Quality: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
720
+ Maintenance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
721
+ Shift: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
722
+ Machine: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
723
+ Conveyor: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
724
+ Robot: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
725
+ Workstation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
726
+ Batch: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
727
+ ProductionOrder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
728
+ BOM: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
729
+ Routing: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
730
+ Capacity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
731
+ Ledger: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
732
+ Journal: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
733
+ BalanceSheet: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
734
+ Invoice: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
735
+ Tax: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
736
+ Audit: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
737
+ Depreciation: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
738
+ Amortization: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
739
+ AccountsPayable: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
740
+ AccountsReceivable: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
741
+ TrialBalance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
742
+ CashFlow: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
743
+ ProfitLoss: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
744
+ GeneralLedger: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
745
+ Kanban: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
746
+ Timeline: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
747
+ Sprint: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
748
+ Backlog: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
749
+ Task: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
750
+ Deadline: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
751
+ Progress: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
752
+ Gantt: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
753
+ Agile: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
754
+ Scrum: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
755
+ Planning: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
756
+ Retrospective: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
757
+ Velocity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
758
+ Team: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
759
+ Hire: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
760
+ Handshake: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
761
+ IdCard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
762
+ OrgChart: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
763
+ Performance: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
764
+ Interview: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
765
+ Payroll: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
766
+ Benefits: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
767
+ Training: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
768
+ Diversity: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
769
+ Briefcase: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
770
+ Clipboard: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
771
+ Calendar: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
772
+ Desk: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
773
+ Printer: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
774
+ Scanner: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
775
+ Folder: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
776
+ File: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
777
+ Document: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
778
+ Stamp: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
779
+ PaperClip: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
780
+ Stapler: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
781
+ Notebook: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
782
+ Pen: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
783
+ Coffee: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
784
+ ChartLine: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
785
+ ChartBar: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
786
+ ChartPie: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
787
+ Dollar: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
788
+ Euro: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
789
+ Bank: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
790
+ PiggyBank: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
791
+ CoinStack: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
792
+ Loss: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
793
+ Budget: () => Promise<import('react').ForwardRefExoticComponent<import('./types').BusinessIconProps & import('react').RefAttributes<SVGSVGElement>>>;
794
+ };
795
+ export declare const ICON_COUNT: {
796
+ readonly finance: 15;
797
+ readonly office: 15;
798
+ readonly hr: 15;
799
+ readonly project: 15;
800
+ readonly accounting: 15;
801
+ readonly production: 14;
802
+ readonly warehouse: 14;
803
+ readonly crm: 12;
804
+ readonly sales: 13;
805
+ readonly purchasing: 13;
806
+ readonly marketing: 28;
807
+ readonly analytics: 26;
808
+ readonly legal: 24;
809
+ readonly communication: 23;
810
+ readonly ecommerce: 27;
811
+ readonly support: 24;
812
+ readonly strategy: 21;
813
+ readonly startup: 23;
814
+ readonly logistics: 25;
815
+ readonly total: 343;
816
+ };
817
+ //# sourceMappingURL=index.d.ts.map