@retinalabsllc/zairusjs 21.1.3 → 21.1.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -1208,4 +1208,186 @@ interface HomeHuddleCalendarProps {
1208
1208
  }
1209
1209
  declare const HomeHuddleCalendar: React.FC<HomeHuddleCalendarProps>;
1210
1210
 
1211
- export { AppBento2, type AppBento2Props, type BannerProps, type BarIconProps, type BentoFeature, type BoardMember, type CardData, CardInfoDialog, type CardInfoDialogProps, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type CryptoOption, type DocumentSectionData, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, type FiatCurrencyOption, Footer, type FooterColumn, type FooterLink, type FooterProps, FundCardDialog, type FundCardDialogProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type HomeActionBtn2, HomeHuddleCalendar, type HomeHuddleCalendarProps, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NetworkOption, type NotificationItem, type NotificationItem2, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type RateCalculationPayload, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
1211
+ interface UniversalApplication {
1212
+ id: string;
1213
+ type: string;
1214
+ timeString: string;
1215
+ icon?: any;
1216
+ }
1217
+ interface UniversalApplicationsPageProps {
1218
+ headerTitle: string;
1219
+ headerDescription: string;
1220
+ applications: UniversalApplication[];
1221
+ isLoading: boolean;
1222
+ currentPage: number;
1223
+ totalPages: number;
1224
+ onPageChange: (page: number) => void;
1225
+ onApplicationClick: (applicationId: string) => void;
1226
+ onCreateApplication?: () => void;
1227
+ }
1228
+ declare const UniversalApplicationsPage: React.FC<UniversalApplicationsPageProps>;
1229
+
1230
+ interface HomeActionBtn3 {
1231
+ label: string;
1232
+ icon?: any;
1233
+ onClick: () => void;
1234
+ }
1235
+ interface NotificationItem3 {
1236
+ id: string;
1237
+ title: string;
1238
+ message: string;
1239
+ isRead: boolean;
1240
+ type?: string;
1241
+ meta_json?: any;
1242
+ createdAt: string | Date;
1243
+ }
1244
+ interface UniversalHome3Props {
1245
+ createApplicationAction?: HomeActionBtn3;
1246
+ checkApplicationAction?: HomeActionBtn3;
1247
+ notifications?: NotificationItem3[];
1248
+ notificationPage?: number;
1249
+ notificationTotalPages?: number;
1250
+ isNotifsLoading?: boolean;
1251
+ onNotificationPageChange?: (page: number) => void;
1252
+ onNotificationClick?: (notif: NotificationItem3) => void;
1253
+ onResolveInvite?: (notif: NotificationItem3, resolution: 'ACCEPTED' | 'REJECTED') => Promise<void>;
1254
+ formatNotifDate: (date: string | Date) => string;
1255
+ customContent?: React.ReactNode;
1256
+ applicationsProps: UniversalApplicationsPageProps;
1257
+ }
1258
+ declare const UniversalHome3: React.FC<UniversalHome3Props>;
1259
+
1260
+ interface NavItem2 {
1261
+ name: string;
1262
+ path: string;
1263
+ icon: any;
1264
+ }
1265
+ interface WorkspaceItem {
1266
+ id: string;
1267
+ name: string;
1268
+ role: string;
1269
+ }
1270
+ interface RootSidebarProps {
1271
+ NavItem2s: NavItem2[];
1272
+ currentPath: string;
1273
+ isMobileOpen: boolean;
1274
+ closeMobile: () => void;
1275
+ openMobile: () => void;
1276
+ onNavClick?: (e: React.MouseEvent<HTMLAnchorElement>, path: string) => void;
1277
+ avatarSrc?: string | null;
1278
+ title?: string;
1279
+ subtitle?: string;
1280
+ homeUrl?: string;
1281
+ showWorkspaceSwitcher?: boolean;
1282
+ workspaces?: WorkspaceItem[];
1283
+ activeWorkspaceId?: string;
1284
+ onSwitchWorkspace?: (orgId: string) => void;
1285
+ showLogoutAction?: boolean;
1286
+ onLogout?: () => Promise<void>;
1287
+ }
1288
+ declare function RootSidebar({ NavItem2s, currentPath, isMobileOpen, closeMobile, onNavClick, avatarSrc, title, subtitle, homeUrl, showWorkspaceSwitcher, workspaces, activeWorkspaceId, onSwitchWorkspace, showLogoutAction, onLogout }: RootSidebarProps): React.JSX.Element;
1289
+
1290
+ interface UniversalMember3 {
1291
+ id: string;
1292
+ userId: string;
1293
+ fullName: string;
1294
+ email?: string;
1295
+ avatarUrl?: string | null;
1296
+ status: string;
1297
+ role: string;
1298
+ isRootAdmin?: boolean;
1299
+ }
1300
+ interface UniversalSettings2Props {
1301
+ accountType: 'INDIVIDUAL' | 'ORGANIZATION';
1302
+ userRole?: string;
1303
+ members?: UniversalMember3[];
1304
+ isMembersLoading?: boolean;
1305
+ membersCurrentPage?: number;
1306
+ membersTotalPages?: number;
1307
+ onMembersPageChange?: (page: number) => void;
1308
+ membersSearchQuery?: string;
1309
+ onMembersSearchChange?: (query: string) => void;
1310
+ activeStatusFilter?: string;
1311
+ onStatusFilterChange?: (status: string) => void;
1312
+ activeRoleFilter?: string;
1313
+ onRoleFilterChange?: (role: string) => void;
1314
+ onRemoveMember?: (memberId: string) => Promise<void>;
1315
+ onInviteMember?: (email: string) => Promise<void>;
1316
+ onUpdateRole?: (memberId: string, newRole: string) => Promise<void>;
1317
+ initialOrgName?: string;
1318
+ initialOrgSlug?: string;
1319
+ initialOrgAvatarUrl?: string;
1320
+ initialFullName?: string;
1321
+ initialEmail?: string;
1322
+ initialJobTitle?: string;
1323
+ initialDescription?: string;
1324
+ initialAvatarUrl?: string;
1325
+ onSaveProfile?: (payload: {
1326
+ firstName: string;
1327
+ lastName: string;
1328
+ jobTitle: string;
1329
+ description: string;
1330
+ avatarUrl: string;
1331
+ }) => Promise<{
1332
+ success: boolean;
1333
+ error?: string;
1334
+ }>;
1335
+ onSaveOrganization?: (payload: {
1336
+ name: string;
1337
+ slug: string;
1338
+ avatarUrl: string;
1339
+ }) => Promise<{
1340
+ success: boolean;
1341
+ error?: string;
1342
+ }>;
1343
+ onCheckSlugAvailability?: (slug: string) => Promise<{
1344
+ available: boolean;
1345
+ }>;
1346
+ onUploadAvatar?: (file: File, type: 'USER' | 'ORGANIZATION') => Promise<{
1347
+ url: string;
1348
+ }>;
1349
+ isBillingLoading?: boolean;
1350
+ onTopUp?: () => void;
1351
+ onBack?: () => void;
1352
+ }
1353
+ declare const UniversalSettings2: React.FC<UniversalSettings2Props>;
1354
+
1355
+ interface UniversalDeveloperSettingsProps {
1356
+ initialPublicKey: string;
1357
+ initialWebhookUrl: string;
1358
+ isReadOnly?: boolean;
1359
+ onGenerateKeys: () => Promise<{
1360
+ success: boolean;
1361
+ data?: {
1362
+ publicKey: string;
1363
+ secretKey: string;
1364
+ };
1365
+ error?: string;
1366
+ }>;
1367
+ onSaveWebhook: (webhookUrl: string) => Promise<{
1368
+ success: boolean;
1369
+ data?: {
1370
+ webhookUrl: string;
1371
+ };
1372
+ error?: string;
1373
+ }>;
1374
+ }
1375
+ declare const UniversalDeveloperSettings: React.FC<UniversalDeveloperSettingsProps>;
1376
+
1377
+ interface UniversalApplicationPage2Props {
1378
+ userRole?: string;
1379
+ applications: UniversalApplication[];
1380
+ isLoading: boolean;
1381
+ currentPage: number;
1382
+ totalPages: number;
1383
+ onPageChange: (page: number) => void;
1384
+ searchQuery: string;
1385
+ onSearchChange: (query: string) => void;
1386
+ activeStatusFilter: string;
1387
+ onStatusFilterChange: (status: string) => void;
1388
+ onApplicationClick: (appId: string) => void;
1389
+ onCreateApplication?: () => void;
1390
+ }
1391
+ declare const UniversalApplicationPage2: React.FC<UniversalApplicationPage2Props>;
1392
+
1393
+ export { AppBento2, type AppBento2Props, type BannerProps, type BarIconProps, type BentoFeature, type BoardMember, type CardData, CardInfoDialog, type CardInfoDialogProps, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type CryptoOption, type DocumentSectionData, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, type FiatCurrencyOption, Footer, type FooterColumn, type FooterLink, type FooterProps, FundCardDialog, type FundCardDialogProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type HomeActionBtn2, type HomeActionBtn3, HomeHuddleCalendar, type HomeHuddleCalendarProps, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NavItem2, type NetworkOption, type NotificationItem, type NotificationItem2, type NotificationItem3, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type RateCalculationPayload, type ReferralProfile, type RewardItem, type RewardProfile, RootSidebar, type RootSidebarProps, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, type UniversalApplication, UniversalApplicationPage2, type UniversalApplicationPage2Props, UniversalApplicationsPage, type UniversalApplicationsPageProps, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHome3, type UniversalHome3Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, type UniversalMember3, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, UniversalSettings2, type UniversalSettings2Props, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps, type WorkspaceItem };
package/dist/index.d.ts CHANGED
@@ -1208,4 +1208,186 @@ interface HomeHuddleCalendarProps {
1208
1208
  }
1209
1209
  declare const HomeHuddleCalendar: React.FC<HomeHuddleCalendarProps>;
1210
1210
 
1211
- export { AppBento2, type AppBento2Props, type BannerProps, type BarIconProps, type BentoFeature, type BoardMember, type CardData, CardInfoDialog, type CardInfoDialogProps, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type CryptoOption, type DocumentSectionData, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, type FiatCurrencyOption, Footer, type FooterColumn, type FooterLink, type FooterProps, FundCardDialog, type FundCardDialogProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type HomeActionBtn2, HomeHuddleCalendar, type HomeHuddleCalendarProps, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NetworkOption, type NotificationItem, type NotificationItem2, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type RateCalculationPayload, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
1211
+ interface UniversalApplication {
1212
+ id: string;
1213
+ type: string;
1214
+ timeString: string;
1215
+ icon?: any;
1216
+ }
1217
+ interface UniversalApplicationsPageProps {
1218
+ headerTitle: string;
1219
+ headerDescription: string;
1220
+ applications: UniversalApplication[];
1221
+ isLoading: boolean;
1222
+ currentPage: number;
1223
+ totalPages: number;
1224
+ onPageChange: (page: number) => void;
1225
+ onApplicationClick: (applicationId: string) => void;
1226
+ onCreateApplication?: () => void;
1227
+ }
1228
+ declare const UniversalApplicationsPage: React.FC<UniversalApplicationsPageProps>;
1229
+
1230
+ interface HomeActionBtn3 {
1231
+ label: string;
1232
+ icon?: any;
1233
+ onClick: () => void;
1234
+ }
1235
+ interface NotificationItem3 {
1236
+ id: string;
1237
+ title: string;
1238
+ message: string;
1239
+ isRead: boolean;
1240
+ type?: string;
1241
+ meta_json?: any;
1242
+ createdAt: string | Date;
1243
+ }
1244
+ interface UniversalHome3Props {
1245
+ createApplicationAction?: HomeActionBtn3;
1246
+ checkApplicationAction?: HomeActionBtn3;
1247
+ notifications?: NotificationItem3[];
1248
+ notificationPage?: number;
1249
+ notificationTotalPages?: number;
1250
+ isNotifsLoading?: boolean;
1251
+ onNotificationPageChange?: (page: number) => void;
1252
+ onNotificationClick?: (notif: NotificationItem3) => void;
1253
+ onResolveInvite?: (notif: NotificationItem3, resolution: 'ACCEPTED' | 'REJECTED') => Promise<void>;
1254
+ formatNotifDate: (date: string | Date) => string;
1255
+ customContent?: React.ReactNode;
1256
+ applicationsProps: UniversalApplicationsPageProps;
1257
+ }
1258
+ declare const UniversalHome3: React.FC<UniversalHome3Props>;
1259
+
1260
+ interface NavItem2 {
1261
+ name: string;
1262
+ path: string;
1263
+ icon: any;
1264
+ }
1265
+ interface WorkspaceItem {
1266
+ id: string;
1267
+ name: string;
1268
+ role: string;
1269
+ }
1270
+ interface RootSidebarProps {
1271
+ NavItem2s: NavItem2[];
1272
+ currentPath: string;
1273
+ isMobileOpen: boolean;
1274
+ closeMobile: () => void;
1275
+ openMobile: () => void;
1276
+ onNavClick?: (e: React.MouseEvent<HTMLAnchorElement>, path: string) => void;
1277
+ avatarSrc?: string | null;
1278
+ title?: string;
1279
+ subtitle?: string;
1280
+ homeUrl?: string;
1281
+ showWorkspaceSwitcher?: boolean;
1282
+ workspaces?: WorkspaceItem[];
1283
+ activeWorkspaceId?: string;
1284
+ onSwitchWorkspace?: (orgId: string) => void;
1285
+ showLogoutAction?: boolean;
1286
+ onLogout?: () => Promise<void>;
1287
+ }
1288
+ declare function RootSidebar({ NavItem2s, currentPath, isMobileOpen, closeMobile, onNavClick, avatarSrc, title, subtitle, homeUrl, showWorkspaceSwitcher, workspaces, activeWorkspaceId, onSwitchWorkspace, showLogoutAction, onLogout }: RootSidebarProps): React.JSX.Element;
1289
+
1290
+ interface UniversalMember3 {
1291
+ id: string;
1292
+ userId: string;
1293
+ fullName: string;
1294
+ email?: string;
1295
+ avatarUrl?: string | null;
1296
+ status: string;
1297
+ role: string;
1298
+ isRootAdmin?: boolean;
1299
+ }
1300
+ interface UniversalSettings2Props {
1301
+ accountType: 'INDIVIDUAL' | 'ORGANIZATION';
1302
+ userRole?: string;
1303
+ members?: UniversalMember3[];
1304
+ isMembersLoading?: boolean;
1305
+ membersCurrentPage?: number;
1306
+ membersTotalPages?: number;
1307
+ onMembersPageChange?: (page: number) => void;
1308
+ membersSearchQuery?: string;
1309
+ onMembersSearchChange?: (query: string) => void;
1310
+ activeStatusFilter?: string;
1311
+ onStatusFilterChange?: (status: string) => void;
1312
+ activeRoleFilter?: string;
1313
+ onRoleFilterChange?: (role: string) => void;
1314
+ onRemoveMember?: (memberId: string) => Promise<void>;
1315
+ onInviteMember?: (email: string) => Promise<void>;
1316
+ onUpdateRole?: (memberId: string, newRole: string) => Promise<void>;
1317
+ initialOrgName?: string;
1318
+ initialOrgSlug?: string;
1319
+ initialOrgAvatarUrl?: string;
1320
+ initialFullName?: string;
1321
+ initialEmail?: string;
1322
+ initialJobTitle?: string;
1323
+ initialDescription?: string;
1324
+ initialAvatarUrl?: string;
1325
+ onSaveProfile?: (payload: {
1326
+ firstName: string;
1327
+ lastName: string;
1328
+ jobTitle: string;
1329
+ description: string;
1330
+ avatarUrl: string;
1331
+ }) => Promise<{
1332
+ success: boolean;
1333
+ error?: string;
1334
+ }>;
1335
+ onSaveOrganization?: (payload: {
1336
+ name: string;
1337
+ slug: string;
1338
+ avatarUrl: string;
1339
+ }) => Promise<{
1340
+ success: boolean;
1341
+ error?: string;
1342
+ }>;
1343
+ onCheckSlugAvailability?: (slug: string) => Promise<{
1344
+ available: boolean;
1345
+ }>;
1346
+ onUploadAvatar?: (file: File, type: 'USER' | 'ORGANIZATION') => Promise<{
1347
+ url: string;
1348
+ }>;
1349
+ isBillingLoading?: boolean;
1350
+ onTopUp?: () => void;
1351
+ onBack?: () => void;
1352
+ }
1353
+ declare const UniversalSettings2: React.FC<UniversalSettings2Props>;
1354
+
1355
+ interface UniversalDeveloperSettingsProps {
1356
+ initialPublicKey: string;
1357
+ initialWebhookUrl: string;
1358
+ isReadOnly?: boolean;
1359
+ onGenerateKeys: () => Promise<{
1360
+ success: boolean;
1361
+ data?: {
1362
+ publicKey: string;
1363
+ secretKey: string;
1364
+ };
1365
+ error?: string;
1366
+ }>;
1367
+ onSaveWebhook: (webhookUrl: string) => Promise<{
1368
+ success: boolean;
1369
+ data?: {
1370
+ webhookUrl: string;
1371
+ };
1372
+ error?: string;
1373
+ }>;
1374
+ }
1375
+ declare const UniversalDeveloperSettings: React.FC<UniversalDeveloperSettingsProps>;
1376
+
1377
+ interface UniversalApplicationPage2Props {
1378
+ userRole?: string;
1379
+ applications: UniversalApplication[];
1380
+ isLoading: boolean;
1381
+ currentPage: number;
1382
+ totalPages: number;
1383
+ onPageChange: (page: number) => void;
1384
+ searchQuery: string;
1385
+ onSearchChange: (query: string) => void;
1386
+ activeStatusFilter: string;
1387
+ onStatusFilterChange: (status: string) => void;
1388
+ onApplicationClick: (appId: string) => void;
1389
+ onCreateApplication?: () => void;
1390
+ }
1391
+ declare const UniversalApplicationPage2: React.FC<UniversalApplicationPage2Props>;
1392
+
1393
+ export { AppBento2, type AppBento2Props, type BannerProps, type BarIconProps, type BentoFeature, type BoardMember, type CardData, CardInfoDialog, type CardInfoDialogProps, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type CryptoOption, type DocumentSectionData, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, type FiatCurrencyOption, Footer, type FooterColumn, type FooterLink, type FooterProps, FundCardDialog, type FundCardDialogProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type HomeActionBtn2, type HomeActionBtn3, HomeHuddleCalendar, type HomeHuddleCalendarProps, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NavItem2, type NetworkOption, type NotificationItem, type NotificationItem2, type NotificationItem3, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type RateCalculationPayload, type ReferralProfile, type RewardItem, type RewardProfile, RootSidebar, type RootSidebarProps, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, type UniversalApplication, UniversalApplicationPage2, type UniversalApplicationPage2Props, UniversalApplicationsPage, type UniversalApplicationsPageProps, UniversalBuyCryptoPage, type UniversalBuyCryptoPageProps, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalCreateHuddle, type UniversalCreateHuddleProps, UniversalDeveloperSettings, type UniversalDeveloperSettingsProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHome2, type UniversalHome2Props, UniversalHome3, type UniversalHome3Props, UniversalHomeView, type UniversalHomeViewProps, type UniversalHuddle, UniversalHuddleDetails, type UniversalHuddleDetailsProps, UniversalHuddlesPage, type UniversalHuddlesPageProps, type UniversalMember, type UniversalMember2$1 as UniversalMember2, type UniversalMember3, UniversalMembersPage, type UniversalMembersPageProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSettings, UniversalSettings2, type UniversalSettings2Props, type UniversalSettingsProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps, type WorkspaceItem };