braid-ui 1.0.30 → 1.0.32

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -101,28 +101,28 @@ interface OFACAlertViewProps {
101
101
  declare const OFACAlertView: ({ alert }: OFACAlertViewProps) => react_jsx_runtime.JSX.Element;
102
102
 
103
103
  declare const resolveAlertSchema: z.ZodEffects<z.ZodObject<{
104
- action: z.ZodEnum<["APPROVE", "DECLINE", "CLOSE"]>;
104
+ action: z.ZodEffects<z.ZodString, string, string>;
105
105
  changeToAccount: z.ZodOptional<z.ZodString>;
106
106
  note: z.ZodString;
107
107
  returnCode: z.ZodOptional<z.ZodString>;
108
108
  }, "strip", z.ZodTypeAny, {
109
109
  note?: string;
110
- action?: "APPROVE" | "DECLINE" | "CLOSE";
110
+ action?: string;
111
111
  changeToAccount?: string;
112
112
  returnCode?: string;
113
113
  }, {
114
114
  note?: string;
115
- action?: "APPROVE" | "DECLINE" | "CLOSE";
115
+ action?: string;
116
116
  changeToAccount?: string;
117
117
  returnCode?: string;
118
118
  }>, {
119
119
  note?: string;
120
- action?: "APPROVE" | "DECLINE" | "CLOSE";
120
+ action?: string;
121
121
  changeToAccount?: string;
122
122
  returnCode?: string;
123
123
  }, {
124
124
  note?: string;
125
- action?: "APPROVE" | "DECLINE" | "CLOSE";
125
+ action?: string;
126
126
  changeToAccount?: string;
127
127
  returnCode?: string;
128
128
  }>;
@@ -143,19 +143,31 @@ interface MainLayoutProps {
143
143
  }
144
144
  declare const MainLayout: ({ children }: MainLayoutProps) => react_jsx_runtime.JSX.Element;
145
145
 
146
- interface BusinessFilters$1 {
146
+ interface UBO {
147
+ id: string;
147
148
  name: string;
148
- productName: string;
149
- status: string;
150
- createdDateStart?: Date;
151
- createdDateEnd?: Date;
149
+ title: string;
150
+ ownershipPercentage: number;
151
+ customerId: string;
152
152
  }
153
- interface BusinessFiltersSheetProps {
154
- filters: BusinessFilters$1;
155
- onFilterChange: (field: keyof BusinessFilters$1, value: string | Date | undefined) => void;
156
- onResetFilters: () => void;
153
+
154
+ interface BusinessDocument {
155
+ id: string;
156
+ name: string;
157
+ type: string;
158
+ description?: string;
159
+ size: string;
160
+ uploadedBy: string;
161
+ uploadedAt: string;
162
+ url?: string;
163
+ }
164
+
165
+ interface IdentityVerification {
166
+ customerId: string;
167
+ isDeveloperInitiated: boolean;
168
+ provider: string;
169
+ result: string;
157
170
  }
158
- declare const BusinessFiltersSheet: ({ filters, onFilterChange, onResetFilters }: BusinessFiltersSheetProps) => react_jsx_runtime.JSX.Element;
159
171
 
160
172
  declare const businessProfileSchema: z.ZodObject<{
161
173
  name: z.ZodString;
@@ -227,10 +239,10 @@ declare const businessProfileSchema: z.ZodObject<{
227
239
  postalCode?: string;
228
240
  countryCode?: string;
229
241
  };
242
+ idNumber?: string;
230
243
  website?: string;
231
244
  productId?: number;
232
245
  businessIdType?: string;
233
- idNumber?: string;
234
246
  dba?: string;
235
247
  businessEntityType?: string;
236
248
  incorporationState?: string;
@@ -260,10 +272,10 @@ declare const businessProfileSchema: z.ZodObject<{
260
272
  postalCode?: string;
261
273
  countryCode?: string;
262
274
  };
275
+ idNumber?: string;
263
276
  website?: string;
264
277
  productId?: number;
265
278
  businessIdType?: string;
266
- idNumber?: string;
267
279
  dba?: string;
268
280
  businessEntityType?: string;
269
281
  incorporationState?: string;
@@ -285,6 +297,52 @@ declare const businessProfileSchema: z.ZodObject<{
285
297
  }>;
286
298
  type BusinessProfile = z.infer<typeof businessProfileSchema>;
287
299
 
300
+ interface Business {
301
+ id: string;
302
+ businessName: string;
303
+ status: string;
304
+ cipStatus: "PASS" | "FAIL" | "IN_REVIEW" | "NOT_START" | "not_start" | "pending" | "rejected" | "verified";
305
+ type: "Business" | "Individual";
306
+ subType: "Customer" | "UBO";
307
+ }
308
+ interface BusinessAccount {
309
+ id: string;
310
+ number: string;
311
+ routingNumber: string;
312
+ type: string;
313
+ }
314
+ interface BusinessDetailViewProps {
315
+ business: Business;
316
+ businessProfile?: BusinessProfile;
317
+ identityVerification?: IdentityVerification;
318
+ businessUBOs: UBO[];
319
+ businessDocuments: BusinessDocument[];
320
+ businessAccounts: BusinessAccount[];
321
+ currentStatus: string;
322
+ isEditingProfile: boolean;
323
+ onStatusChange: (newStatus: string) => void;
324
+ onProfileDataChange: (profile: BusinessProfile) => void;
325
+ onToggleProfileEdit: () => void;
326
+ onNavigateToAccounts: () => void;
327
+ onNavigateToCounterparty: () => void;
328
+ onAddAccount: () => void;
329
+ }
330
+ declare const BusinessDetailView: ({ business, businessProfile, identityVerification, businessUBOs, businessDocuments, businessAccounts, currentStatus, isEditingProfile, onStatusChange, onProfileDataChange, onToggleProfileEdit, onNavigateToAccounts, onNavigateToCounterparty, onAddAccount }: BusinessDetailViewProps) => react_jsx_runtime.JSX.Element;
331
+
332
+ interface BusinessFilters {
333
+ name: string;
334
+ productName: string;
335
+ status: string;
336
+ createdDateStart?: Date;
337
+ createdDateEnd?: Date;
338
+ }
339
+ interface BusinessFiltersSheetProps {
340
+ filters: BusinessFilters;
341
+ onFilterChange: (field: keyof BusinessFilters, value: string | Date | undefined) => void;
342
+ onResetFilters: () => void;
343
+ }
344
+ declare const BusinessFiltersSheet: ({ filters, onFilterChange, onResetFilters }: BusinessFiltersSheetProps) => react_jsx_runtime.JSX.Element;
345
+
288
346
  interface CreateBusinessViewProps {
289
347
  form: UseFormReturn<BusinessProfile>;
290
348
  businessType: string;
@@ -407,22 +465,6 @@ interface AddressFormProps {
407
465
  }
408
466
  declare const AddressForm: ({ title, description, fieldPrefix, showAddressType, addressTypeOptions, fieldOverrides, showApartment }: AddressFormProps) => react_jsx_runtime.JSX.Element;
409
467
 
410
- declare const counterpartyBasicInfoSchema: z.ZodObject<{
411
- name: z.ZodString;
412
- type: z.ZodString;
413
- status: z.ZodString;
414
- description: z.ZodOptional<z.ZodString>;
415
- }, "strip", z.ZodTypeAny, {
416
- status?: string;
417
- description?: string;
418
- name?: string;
419
- type?: string;
420
- }, {
421
- status?: string;
422
- description?: string;
423
- name?: string;
424
- type?: string;
425
- }>;
426
468
  declare const addressSchema: z.ZodObject<{
427
469
  line1: z.ZodOptional<z.ZodString>;
428
470
  line2: z.ZodOptional<z.ZodString>;
@@ -448,7 +490,72 @@ declare const addressSchema: z.ZodObject<{
448
490
  postalCode?: string;
449
491
  countryCode?: string;
450
492
  }>;
451
- type CounterpartyBasicInfo$1 = z.infer<typeof counterpartyBasicInfoSchema>;
493
+ declare const counterpartyDetailSchema: z.ZodObject<{
494
+ email: z.ZodUnion<[z.ZodOptional<z.ZodString>, z.ZodLiteral<"">]>;
495
+ phone: z.ZodOptional<z.ZodString>;
496
+ dateOfBirth: z.ZodOptional<z.ZodString>;
497
+ idNumber: z.ZodOptional<z.ZodString>;
498
+ idType: z.ZodOptional<z.ZodString>;
499
+ idValue: z.ZodOptional<z.ZodString>;
500
+ address: z.ZodOptional<z.ZodObject<{
501
+ line1: z.ZodOptional<z.ZodString>;
502
+ line2: z.ZodOptional<z.ZodString>;
503
+ city: z.ZodOptional<z.ZodString>;
504
+ state: z.ZodOptional<z.ZodString>;
505
+ postalCode: z.ZodOptional<z.ZodString>;
506
+ countryCode: z.ZodString;
507
+ type: z.ZodOptional<z.ZodString>;
508
+ }, "strip", z.ZodTypeAny, {
509
+ type?: string;
510
+ state?: string;
511
+ line1?: string;
512
+ line2?: string;
513
+ city?: string;
514
+ postalCode?: string;
515
+ countryCode?: string;
516
+ }, {
517
+ type?: string;
518
+ state?: string;
519
+ line1?: string;
520
+ line2?: string;
521
+ city?: string;
522
+ postalCode?: string;
523
+ countryCode?: string;
524
+ }>>;
525
+ }, "strip", z.ZodTypeAny, {
526
+ email?: string;
527
+ address?: {
528
+ type?: string;
529
+ state?: string;
530
+ line1?: string;
531
+ line2?: string;
532
+ city?: string;
533
+ postalCode?: string;
534
+ countryCode?: string;
535
+ };
536
+ phone?: string;
537
+ dateOfBirth?: string;
538
+ idNumber?: string;
539
+ idType?: string;
540
+ idValue?: string;
541
+ }, {
542
+ email?: string;
543
+ address?: {
544
+ type?: string;
545
+ state?: string;
546
+ line1?: string;
547
+ line2?: string;
548
+ city?: string;
549
+ postalCode?: string;
550
+ countryCode?: string;
551
+ };
552
+ phone?: string;
553
+ dateOfBirth?: string;
554
+ idNumber?: string;
555
+ idType?: string;
556
+ idValue?: string;
557
+ }>;
558
+ type CounterpartyDetail$1 = z.infer<typeof counterpartyDetailSchema>;
452
559
  type Address = z.infer<typeof addressSchema>;
453
560
 
454
561
  declare const intermediaryFISchema: z.ZodObject<{
@@ -493,8 +600,8 @@ declare const intermediaryFISchema: z.ZodObject<{
493
600
  countryCode?: string;
494
601
  };
495
602
  idNumber?: string;
496
- accountNumber?: string;
497
603
  idType?: string;
604
+ accountNumber?: string;
498
605
  }, {
499
606
  name?: string;
500
607
  address?: {
@@ -507,8 +614,8 @@ declare const intermediaryFISchema: z.ZodObject<{
507
614
  countryCode?: string;
508
615
  };
509
616
  idNumber?: string;
510
- accountNumber?: string;
511
617
  idType?: string;
618
+ accountNumber?: string;
512
619
  }>;
513
620
  type IntermediaryFI$1 = z.infer<typeof intermediaryFISchema>;
514
621
 
@@ -557,13 +664,6 @@ declare const BeneficiaryCard: ({ isEditing, onToggleEdit, className, hideAction
557
664
 
558
665
  declare const BeneficiaryDomesticWire: () => react_jsx_runtime.JSX.Element;
559
666
 
560
- interface IdentityVerification {
561
- customerId: string;
562
- isDeveloperInitiated: boolean;
563
- provider: string;
564
- result: string;
565
- }
566
-
567
667
  interface BusinessProfileCardProps {
568
668
  data?: Partial<BusinessProfile>;
569
669
  identityVerification?: IdentityVerification;
@@ -595,8 +695,8 @@ interface CounterpartyBasicInfoProps {
595
695
  declare const CounterpartyBasicInfo: ({ onDataChange }: CounterpartyBasicInfoProps) => react_jsx_runtime.JSX.Element;
596
696
 
597
697
  interface CounterpartyProfileCardProps {
598
- data?: Partial<CounterpartyBasicInfo$1>;
599
- onDataChange?: (data: CounterpartyBasicInfo$1) => void;
698
+ data?: Partial<CounterpartyDetail$1>;
699
+ onDataChange?: (data: CounterpartyDetail$1) => void;
600
700
  isEditing?: boolean;
601
701
  onToggleEdit?: () => void;
602
702
  hideActions?: boolean;
@@ -906,7 +1006,7 @@ interface ContainerProps {
906
1006
  declare const Container: React$1.ForwardRefExoticComponent<ContainerProps & React$1.RefAttributes<HTMLDivElement>>;
907
1007
 
908
1008
  interface CounterpartyTypeBadgeProps {
909
- type: "BUSINESS" | "INDIVIDUAL" | "GOVERNMENT" | "NONPROFIT";
1009
+ type: "BUSINESS" | "INDIVIDUAL";
910
1010
  className?: string;
911
1011
  }
912
1012
  declare const CounterpartyTypeBadge: ({ type, className }: CounterpartyTypeBadgeProps) => react_jsx_runtime.JSX.Element;
@@ -947,8 +1047,14 @@ interface DataTableProps<T = any> {
947
1047
  loading?: boolean;
948
1048
  emptyMessage?: string;
949
1049
  className?: string;
1050
+ pagination?: {
1051
+ currentPage: number;
1052
+ pageSize: number;
1053
+ totalItems: number;
1054
+ onPageChange: (page: number) => void;
1055
+ };
950
1056
  }
951
- declare function DataTable<T extends Record<string, any>>({ columns, data, sortBy, sortDirection, onSort, onRowClick, loading, emptyMessage, className }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
1057
+ declare function DataTable<T extends Record<string, any>>({ columns, data, sortBy, sortDirection, onSort, onRowClick, loading, emptyMessage, className, pagination }: DataTableProps<T>): react_jsx_runtime.JSX.Element;
952
1058
 
953
1059
  interface DetailPageCard {
954
1060
  key: string;
@@ -1470,48 +1576,33 @@ interface UseFormWithEditStateReturn<T extends FieldValues> extends UseFormRetur
1470
1576
  }
1471
1577
  declare const useFormWithEditState: <T extends FieldValues>({ schema, initialEditing, onToggleEdit, onSave, onCancel, ...formProps }: UseFormWithEditStateProps<T>) => UseFormWithEditStateReturn<T>;
1472
1578
 
1473
- interface BusinessListItem {
1579
+ interface CounterpartyListItem {
1474
1580
  id: string;
1475
- businessName: string;
1476
- productName: string;
1477
- cipStatus: "NOT_START" | "PASS" | "FAIL" | "IN_REVIEW";
1478
- status: "ACTIVE" | "INACTIVE" | "BLOCKED" | "PENDING_APPROVAL";
1479
- type: "Individual" | "Business";
1480
- subType: "UBO" | "Customer";
1481
- isDeveloperInitiated: boolean;
1482
- provider: string;
1483
- result: string;
1581
+ name: string;
1582
+ type: "BUSINESS" | "INDIVIDUAL";
1583
+ status: "ACTIVE" | "INACTIVE" | "PENDING" | "SUSPENDED";
1584
+ productId?: string;
1585
+ businessId?: string;
1586
+ individualId?: string;
1587
+ accountNumber?: string;
1588
+ customerId?: string;
1589
+ customerType?: "business" | "individual";
1484
1590
  created: string;
1485
1591
  modified: string;
1486
1592
  }
1487
1593
 
1488
- interface BusinessFilters {
1489
- name: string;
1490
- productName: string;
1491
- status: string;
1492
- createdDateStart: Date | undefined;
1493
- createdDateEnd: Date | undefined;
1494
- }
1495
- interface UseBusinessFiltersProps {
1496
- initialData: BusinessListItem[];
1594
+ interface CounterpartyWithEntity extends CounterpartyListItem {
1595
+ associatedEntity: string;
1596
+ entityType: "product" | "business" | "individual" | "account" | null;
1497
1597
  }
1498
- declare const useBusinessFilters: ({ initialData }: UseBusinessFiltersProps) => {
1499
- filters: BusinessFilters;
1500
- filteredData: BusinessListItem[];
1501
- handleFilterChange: (field: keyof BusinessFilters, value: string | Date | undefined) => void;
1502
- applyFilters: () => void;
1503
- resetFilters: () => void;
1598
+ declare const useCounterpartyEntity: (counterparties: CounterpartyListItem[]) => {
1599
+ counterparties: CounterpartyWithEntity[];
1600
+ loading: boolean;
1504
1601
  };
1505
1602
 
1506
- interface UseBusinessSortProps {
1507
- data: BusinessListItem[];
1508
- }
1509
- declare const useBusinessSort: ({ data }: UseBusinessSortProps) => {
1510
- sortBy: string;
1511
- sortDirection: "desc" | "asc";
1512
- sortedData: BusinessListItem[];
1513
- handleSort: (key: string) => void;
1514
- };
1603
+ declare const Accounts: () => react_jsx_runtime.JSX.Element;
1604
+
1605
+ declare const AccountDetail: () => react_jsx_runtime.JSX.Element;
1515
1606
 
1516
1607
  declare const AlertDetail: () => react_jsx_runtime.JSX.Element;
1517
1608
 
@@ -1519,7 +1610,7 @@ declare const Alerts: () => react_jsx_runtime.JSX.Element;
1519
1610
 
1520
1611
  declare const Businesses: () => react_jsx_runtime.JSX.Element;
1521
1612
 
1522
- declare const Business: () => react_jsx_runtime.JSX.Element;
1613
+ declare const BusinessDetail: () => react_jsx_runtime.JSX.Element;
1523
1614
 
1524
1615
  declare const CreateBusiness: () => react_jsx_runtime.JSX.Element;
1525
1616
 
@@ -1560,4 +1651,4 @@ declare function generateStatementCSV(header: StatementHeader, transactions: Sta
1560
1651
  */
1561
1652
  declare function downloadCSV(content: string, filename: string): void;
1562
1653
 
1563
- export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, Business as BusinessDetail, type BusinessFilters, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateIndividual, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useBusinessFilters, useBusinessSort, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };
1654
+ export { ACHBankCard, ACHBasicInfoCard, ACHDetailsSection, ACHTransferSection, AccountCard, AccountDetail, Accounts, AddressForm, AlertDetail, AlertDetailRouter, type AlertDetailRouterProps, AlertDocuments, AlertHeaderControls, AlertNotes, AlertTimeline, Alerts, AppSidebar, Badge, type BadgeProps, BankAddressCard, BankingDetailsCard, BasicInfoCard, BasicInfoSection, BeneficiaryAddress, BeneficiaryCard, BeneficiaryDomesticWire, Breadcrumb, type BreadcrumbItem, BusinessDetail, BusinessDetailView, BusinessFiltersSheet, BusinessProfileCard, BusinessStatusCard, BusinessTypeBadge, Businesses, Button, type ButtonProps, CIPStatusBadge, Calendar, type CalendarProps, Card, CardContent, type CardContentProps, CardDescription, CardFooter, type CardFooterProps, CardHeader, type CardHeaderProps, type CardProps, CardTitle, type CardTitleProps, Cases, Checkbox, ContactInfoCard, Container, ContextSection, Counterparties, CounterpartyBasicInfo, CounterpartyDetail, CounterpartyProfileCard, CounterpartyRecordsCard, CounterpartyTypeBadge, type CounterpartyWithEntity, CreateBusiness, CreateBusinessView, CreateCounterparty, CreateIndividual, Dashboard, DashboardDemo, DataGrid, type DataGridItem, type DataGridSection, DataTable, type DataTableColumn, type DataTableProps, DetailPageLayout, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuContent, DropdownMenuItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuTrigger, EditableFormCard, EditableInfoField, EnhancedInput, EnhancedSelect, EnhancedTextarea, EntityCard, FormCard, type FormCardProps, FormField, FormInput, FormProvider, FormSection, FormSelect, IndividualDetail, Individuals, InfoField, type InputProps, IntermediaryCard, IntermediaryFI, IntermediaryFIAddress, JsonViewer, Label, ListPage, MainLayout, MetricCard, NewTransaction, NotFound, OFACAlertView, type OFACAlertViewProps, OriginatorCard, OriginatorFI, OriginatorFIAddress, type PageAction, type PageCard, PageLayout, PatternLibrary, PaymentInformationSection, Popover, PopoverContent, PopoverTrigger, ReceiverCard, ResolveAlertDialog, ResponsiveGrid, ScrollArea, ScrollBar, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, Stack, Statement, type StatementHeader, type StatementTransaction, StatementView, StatusBadge, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, type TextareaProps, Toast$1 as Toast, ToastAction, type ToastActionElement, ToastClose, ToastDescription, type ToastProps, ToastProvider, ToastTitle, ToastViewport, Toaster, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, TransactionDetail, TransactionHistory, TransactionTypeBadge, UIKit, UIKitShowcase, type UseAlertDetailReturn, WireDetailsSection, WireTransferSection, badgeVariants, buttonVariants, cardVariants, downloadCSV, generateStatementCSV, inputVariants, reducer, textareaVariants, toast, useAlertDetail, useCounterpartyEntity, useEditState, useFormWithEditState, useIsMobile, useSidebar, useToast };