@dub/utils 0.1.18 → 0.1.19

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.
@@ -0,0 +1,1046 @@
1
+ type PlanFeature = {
2
+ id?: string;
3
+ text: string;
4
+ footnote?: {
5
+ title: string;
6
+ cta: string;
7
+ href: string;
8
+ };
9
+ };
10
+ declare const PLANS: ({
11
+ name: string;
12
+ tagline: string;
13
+ price: {
14
+ monthly: number;
15
+ yearly: number;
16
+ ids?: undefined;
17
+ };
18
+ limits: {
19
+ links: number;
20
+ clicks: number;
21
+ sales: number;
22
+ domains: number;
23
+ tags: number;
24
+ users: number;
25
+ ai: number;
26
+ api: number;
27
+ };
28
+ colors: {
29
+ bg: string;
30
+ text: string;
31
+ };
32
+ cta: {
33
+ text: string;
34
+ href: string;
35
+ color: string;
36
+ shortText?: undefined;
37
+ };
38
+ featureTitle: string;
39
+ features: PlanFeature[];
40
+ link?: undefined;
41
+ } | {
42
+ name: string;
43
+ tagline: string;
44
+ link: string;
45
+ price: {
46
+ monthly: number;
47
+ yearly: number;
48
+ ids: string[];
49
+ };
50
+ limits: {
51
+ links: number;
52
+ clicks: number;
53
+ sales: number;
54
+ domains: number;
55
+ tags: number;
56
+ users: number;
57
+ ai: number;
58
+ api: number;
59
+ };
60
+ colors: {
61
+ bg: string;
62
+ text: string;
63
+ };
64
+ cta: {
65
+ text: string;
66
+ shortText: string;
67
+ href: string;
68
+ color: string;
69
+ };
70
+ featureTitle: string;
71
+ features: PlanFeature[];
72
+ } | {
73
+ name: string;
74
+ tagline: string;
75
+ link: string;
76
+ price: {
77
+ monthly: null;
78
+ yearly: null;
79
+ ids?: undefined;
80
+ };
81
+ limits: {
82
+ links: number;
83
+ clicks: number;
84
+ sales: number;
85
+ domains: number;
86
+ tags: number;
87
+ users: number;
88
+ ai: number;
89
+ api: number;
90
+ };
91
+ colors: {
92
+ bg: string;
93
+ text: string;
94
+ };
95
+ cta: {
96
+ text: string;
97
+ href: string;
98
+ color: string;
99
+ shortText?: undefined;
100
+ };
101
+ featureTitle: string;
102
+ features: PlanFeature[];
103
+ })[];
104
+ declare const FREE_PLAN: {
105
+ name: string;
106
+ tagline: string;
107
+ price: {
108
+ monthly: number;
109
+ yearly: number;
110
+ ids?: undefined;
111
+ };
112
+ limits: {
113
+ links: number;
114
+ clicks: number;
115
+ sales: number;
116
+ domains: number;
117
+ tags: number;
118
+ users: number;
119
+ ai: number;
120
+ api: number;
121
+ };
122
+ colors: {
123
+ bg: string;
124
+ text: string;
125
+ };
126
+ cta: {
127
+ text: string;
128
+ href: string;
129
+ color: string;
130
+ shortText?: undefined;
131
+ };
132
+ featureTitle: string;
133
+ features: PlanFeature[];
134
+ link?: undefined;
135
+ } | {
136
+ name: string;
137
+ tagline: string;
138
+ link: string;
139
+ price: {
140
+ monthly: number;
141
+ yearly: number;
142
+ ids: string[];
143
+ };
144
+ limits: {
145
+ links: number;
146
+ clicks: number;
147
+ sales: number;
148
+ domains: number;
149
+ tags: number;
150
+ users: number;
151
+ ai: number;
152
+ api: number;
153
+ };
154
+ colors: {
155
+ bg: string;
156
+ text: string;
157
+ };
158
+ cta: {
159
+ text: string;
160
+ shortText: string;
161
+ href: string;
162
+ color: string;
163
+ };
164
+ featureTitle: string;
165
+ features: PlanFeature[];
166
+ } | {
167
+ name: string;
168
+ tagline: string;
169
+ link: string;
170
+ price: {
171
+ monthly: null;
172
+ yearly: null;
173
+ ids?: undefined;
174
+ };
175
+ limits: {
176
+ links: number;
177
+ clicks: number;
178
+ sales: number;
179
+ domains: number;
180
+ tags: number;
181
+ users: number;
182
+ ai: number;
183
+ api: number;
184
+ };
185
+ colors: {
186
+ bg: string;
187
+ text: string;
188
+ };
189
+ cta: {
190
+ text: string;
191
+ href: string;
192
+ color: string;
193
+ shortText?: undefined;
194
+ };
195
+ featureTitle: string;
196
+ features: PlanFeature[];
197
+ };
198
+ declare const PRO_PLAN: {
199
+ name: string;
200
+ tagline: string;
201
+ price: {
202
+ monthly: number;
203
+ yearly: number;
204
+ ids?: undefined;
205
+ };
206
+ limits: {
207
+ links: number;
208
+ clicks: number;
209
+ sales: number;
210
+ domains: number;
211
+ tags: number;
212
+ users: number;
213
+ ai: number;
214
+ api: number;
215
+ };
216
+ colors: {
217
+ bg: string;
218
+ text: string;
219
+ };
220
+ cta: {
221
+ text: string;
222
+ href: string;
223
+ color: string;
224
+ shortText?: undefined;
225
+ };
226
+ featureTitle: string;
227
+ features: PlanFeature[];
228
+ link?: undefined;
229
+ } | {
230
+ name: string;
231
+ tagline: string;
232
+ link: string;
233
+ price: {
234
+ monthly: number;
235
+ yearly: number;
236
+ ids: string[];
237
+ };
238
+ limits: {
239
+ links: number;
240
+ clicks: number;
241
+ sales: number;
242
+ domains: number;
243
+ tags: number;
244
+ users: number;
245
+ ai: number;
246
+ api: number;
247
+ };
248
+ colors: {
249
+ bg: string;
250
+ text: string;
251
+ };
252
+ cta: {
253
+ text: string;
254
+ shortText: string;
255
+ href: string;
256
+ color: string;
257
+ };
258
+ featureTitle: string;
259
+ features: PlanFeature[];
260
+ } | {
261
+ name: string;
262
+ tagline: string;
263
+ link: string;
264
+ price: {
265
+ monthly: null;
266
+ yearly: null;
267
+ ids?: undefined;
268
+ };
269
+ limits: {
270
+ links: number;
271
+ clicks: number;
272
+ sales: number;
273
+ domains: number;
274
+ tags: number;
275
+ users: number;
276
+ ai: number;
277
+ api: number;
278
+ };
279
+ colors: {
280
+ bg: string;
281
+ text: string;
282
+ };
283
+ cta: {
284
+ text: string;
285
+ href: string;
286
+ color: string;
287
+ shortText?: undefined;
288
+ };
289
+ featureTitle: string;
290
+ features: PlanFeature[];
291
+ };
292
+ declare const BUSINESS_PLAN: {
293
+ name: string;
294
+ tagline: string;
295
+ price: {
296
+ monthly: number;
297
+ yearly: number;
298
+ ids?: undefined;
299
+ };
300
+ limits: {
301
+ links: number;
302
+ clicks: number;
303
+ sales: number;
304
+ domains: number;
305
+ tags: number;
306
+ users: number;
307
+ ai: number;
308
+ api: number;
309
+ };
310
+ colors: {
311
+ bg: string;
312
+ text: string;
313
+ };
314
+ cta: {
315
+ text: string;
316
+ href: string;
317
+ color: string;
318
+ shortText?: undefined;
319
+ };
320
+ featureTitle: string;
321
+ features: PlanFeature[];
322
+ link?: undefined;
323
+ } | {
324
+ name: string;
325
+ tagline: string;
326
+ link: string;
327
+ price: {
328
+ monthly: number;
329
+ yearly: number;
330
+ ids: string[];
331
+ };
332
+ limits: {
333
+ links: number;
334
+ clicks: number;
335
+ sales: number;
336
+ domains: number;
337
+ tags: number;
338
+ users: number;
339
+ ai: number;
340
+ api: number;
341
+ };
342
+ colors: {
343
+ bg: string;
344
+ text: string;
345
+ };
346
+ cta: {
347
+ text: string;
348
+ shortText: string;
349
+ href: string;
350
+ color: string;
351
+ };
352
+ featureTitle: string;
353
+ features: PlanFeature[];
354
+ } | {
355
+ name: string;
356
+ tagline: string;
357
+ link: string;
358
+ price: {
359
+ monthly: null;
360
+ yearly: null;
361
+ ids?: undefined;
362
+ };
363
+ limits: {
364
+ links: number;
365
+ clicks: number;
366
+ sales: number;
367
+ domains: number;
368
+ tags: number;
369
+ users: number;
370
+ ai: number;
371
+ api: number;
372
+ };
373
+ colors: {
374
+ bg: string;
375
+ text: string;
376
+ };
377
+ cta: {
378
+ text: string;
379
+ href: string;
380
+ color: string;
381
+ shortText?: undefined;
382
+ };
383
+ featureTitle: string;
384
+ features: PlanFeature[];
385
+ };
386
+ declare const ENTERPRISE_PLAN: {
387
+ name: string;
388
+ tagline: string;
389
+ price: {
390
+ monthly: number;
391
+ yearly: number;
392
+ ids?: undefined;
393
+ };
394
+ limits: {
395
+ links: number;
396
+ clicks: number;
397
+ sales: number;
398
+ domains: number;
399
+ tags: number;
400
+ users: number;
401
+ ai: number;
402
+ api: number;
403
+ };
404
+ colors: {
405
+ bg: string;
406
+ text: string;
407
+ };
408
+ cta: {
409
+ text: string;
410
+ href: string;
411
+ color: string;
412
+ shortText?: undefined;
413
+ };
414
+ featureTitle: string;
415
+ features: PlanFeature[];
416
+ link?: undefined;
417
+ } | {
418
+ name: string;
419
+ tagline: string;
420
+ link: string;
421
+ price: {
422
+ monthly: number;
423
+ yearly: number;
424
+ ids: string[];
425
+ };
426
+ limits: {
427
+ links: number;
428
+ clicks: number;
429
+ sales: number;
430
+ domains: number;
431
+ tags: number;
432
+ users: number;
433
+ ai: number;
434
+ api: number;
435
+ };
436
+ colors: {
437
+ bg: string;
438
+ text: string;
439
+ };
440
+ cta: {
441
+ text: string;
442
+ shortText: string;
443
+ href: string;
444
+ color: string;
445
+ };
446
+ featureTitle: string;
447
+ features: PlanFeature[];
448
+ } | {
449
+ name: string;
450
+ tagline: string;
451
+ link: string;
452
+ price: {
453
+ monthly: null;
454
+ yearly: null;
455
+ ids?: undefined;
456
+ };
457
+ limits: {
458
+ links: number;
459
+ clicks: number;
460
+ sales: number;
461
+ domains: number;
462
+ tags: number;
463
+ users: number;
464
+ ai: number;
465
+ api: number;
466
+ };
467
+ colors: {
468
+ bg: string;
469
+ text: string;
470
+ };
471
+ cta: {
472
+ text: string;
473
+ href: string;
474
+ color: string;
475
+ shortText?: undefined;
476
+ };
477
+ featureTitle: string;
478
+ features: PlanFeature[];
479
+ };
480
+ declare const PUBLIC_PLANS: ({
481
+ name: string;
482
+ tagline: string;
483
+ price: {
484
+ monthly: number;
485
+ yearly: number;
486
+ ids?: undefined;
487
+ };
488
+ limits: {
489
+ links: number;
490
+ clicks: number;
491
+ sales: number;
492
+ domains: number;
493
+ tags: number;
494
+ users: number;
495
+ ai: number;
496
+ api: number;
497
+ };
498
+ colors: {
499
+ bg: string;
500
+ text: string;
501
+ };
502
+ cta: {
503
+ text: string;
504
+ href: string;
505
+ color: string;
506
+ shortText?: undefined;
507
+ };
508
+ featureTitle: string;
509
+ features: PlanFeature[];
510
+ link?: undefined;
511
+ } | {
512
+ name: string;
513
+ tagline: string;
514
+ link: string;
515
+ price: {
516
+ monthly: number;
517
+ yearly: number;
518
+ ids: string[];
519
+ };
520
+ limits: {
521
+ links: number;
522
+ clicks: number;
523
+ sales: number;
524
+ domains: number;
525
+ tags: number;
526
+ users: number;
527
+ ai: number;
528
+ api: number;
529
+ };
530
+ colors: {
531
+ bg: string;
532
+ text: string;
533
+ };
534
+ cta: {
535
+ text: string;
536
+ shortText: string;
537
+ href: string;
538
+ color: string;
539
+ };
540
+ featureTitle: string;
541
+ features: PlanFeature[];
542
+ } | {
543
+ name: string;
544
+ tagline: string;
545
+ link: string;
546
+ price: {
547
+ monthly: null;
548
+ yearly: null;
549
+ ids?: undefined;
550
+ };
551
+ limits: {
552
+ links: number;
553
+ clicks: number;
554
+ sales: number;
555
+ domains: number;
556
+ tags: number;
557
+ users: number;
558
+ ai: number;
559
+ api: number;
560
+ };
561
+ colors: {
562
+ bg: string;
563
+ text: string;
564
+ };
565
+ cta: {
566
+ text: string;
567
+ href: string;
568
+ color: string;
569
+ shortText?: undefined;
570
+ };
571
+ featureTitle: string;
572
+ features: PlanFeature[];
573
+ })[];
574
+ declare const SELF_SERVE_PAID_PLANS: ({
575
+ name: string;
576
+ tagline: string;
577
+ price: {
578
+ monthly: number;
579
+ yearly: number;
580
+ ids?: undefined;
581
+ };
582
+ limits: {
583
+ links: number;
584
+ clicks: number;
585
+ sales: number;
586
+ domains: number;
587
+ tags: number;
588
+ users: number;
589
+ ai: number;
590
+ api: number;
591
+ };
592
+ colors: {
593
+ bg: string;
594
+ text: string;
595
+ };
596
+ cta: {
597
+ text: string;
598
+ href: string;
599
+ color: string;
600
+ shortText?: undefined;
601
+ };
602
+ featureTitle: string;
603
+ features: PlanFeature[];
604
+ link?: undefined;
605
+ } | {
606
+ name: string;
607
+ tagline: string;
608
+ link: string;
609
+ price: {
610
+ monthly: number;
611
+ yearly: number;
612
+ ids: string[];
613
+ };
614
+ limits: {
615
+ links: number;
616
+ clicks: number;
617
+ sales: number;
618
+ domains: number;
619
+ tags: number;
620
+ users: number;
621
+ ai: number;
622
+ api: number;
623
+ };
624
+ colors: {
625
+ bg: string;
626
+ text: string;
627
+ };
628
+ cta: {
629
+ text: string;
630
+ shortText: string;
631
+ href: string;
632
+ color: string;
633
+ };
634
+ featureTitle: string;
635
+ features: PlanFeature[];
636
+ } | {
637
+ name: string;
638
+ tagline: string;
639
+ link: string;
640
+ price: {
641
+ monthly: null;
642
+ yearly: null;
643
+ ids?: undefined;
644
+ };
645
+ limits: {
646
+ links: number;
647
+ clicks: number;
648
+ sales: number;
649
+ domains: number;
650
+ tags: number;
651
+ users: number;
652
+ ai: number;
653
+ api: number;
654
+ };
655
+ colors: {
656
+ bg: string;
657
+ text: string;
658
+ };
659
+ cta: {
660
+ text: string;
661
+ href: string;
662
+ color: string;
663
+ shortText?: undefined;
664
+ };
665
+ featureTitle: string;
666
+ features: PlanFeature[];
667
+ })[];
668
+ declare const FREE_WORKSPACES_LIMIT = 2;
669
+ declare const getPlanFromPriceId: (priceId: string) => {
670
+ name: string;
671
+ tagline: string;
672
+ price: {
673
+ monthly: number;
674
+ yearly: number;
675
+ ids?: undefined;
676
+ };
677
+ limits: {
678
+ links: number;
679
+ clicks: number;
680
+ sales: number;
681
+ domains: number;
682
+ tags: number;
683
+ users: number;
684
+ ai: number;
685
+ api: number;
686
+ };
687
+ colors: {
688
+ bg: string;
689
+ text: string;
690
+ };
691
+ cta: {
692
+ text: string;
693
+ href: string;
694
+ color: string;
695
+ shortText?: undefined;
696
+ };
697
+ featureTitle: string;
698
+ features: PlanFeature[];
699
+ link?: undefined;
700
+ } | {
701
+ name: string;
702
+ tagline: string;
703
+ link: string;
704
+ price: {
705
+ monthly: number;
706
+ yearly: number;
707
+ ids: string[];
708
+ };
709
+ limits: {
710
+ links: number;
711
+ clicks: number;
712
+ sales: number;
713
+ domains: number;
714
+ tags: number;
715
+ users: number;
716
+ ai: number;
717
+ api: number;
718
+ };
719
+ colors: {
720
+ bg: string;
721
+ text: string;
722
+ };
723
+ cta: {
724
+ text: string;
725
+ shortText: string;
726
+ href: string;
727
+ color: string;
728
+ };
729
+ featureTitle: string;
730
+ features: PlanFeature[];
731
+ } | {
732
+ name: string;
733
+ tagline: string;
734
+ link: string;
735
+ price: {
736
+ monthly: null;
737
+ yearly: null;
738
+ ids?: undefined;
739
+ };
740
+ limits: {
741
+ links: number;
742
+ clicks: number;
743
+ sales: number;
744
+ domains: number;
745
+ tags: number;
746
+ users: number;
747
+ ai: number;
748
+ api: number;
749
+ };
750
+ colors: {
751
+ bg: string;
752
+ text: string;
753
+ };
754
+ cta: {
755
+ text: string;
756
+ href: string;
757
+ color: string;
758
+ shortText?: undefined;
759
+ };
760
+ featureTitle: string;
761
+ features: PlanFeature[];
762
+ } | null;
763
+ declare const getPlanDetails: (plan: string) => {
764
+ name: string;
765
+ tagline: string;
766
+ price: {
767
+ monthly: number;
768
+ yearly: number;
769
+ ids?: undefined;
770
+ };
771
+ limits: {
772
+ links: number;
773
+ clicks: number;
774
+ sales: number;
775
+ domains: number;
776
+ tags: number;
777
+ users: number;
778
+ ai: number;
779
+ api: number;
780
+ };
781
+ colors: {
782
+ bg: string;
783
+ text: string;
784
+ };
785
+ cta: {
786
+ text: string;
787
+ href: string;
788
+ color: string;
789
+ shortText?: undefined;
790
+ };
791
+ featureTitle: string;
792
+ features: PlanFeature[];
793
+ link?: undefined;
794
+ } | {
795
+ name: string;
796
+ tagline: string;
797
+ link: string;
798
+ price: {
799
+ monthly: number;
800
+ yearly: number;
801
+ ids: string[];
802
+ };
803
+ limits: {
804
+ links: number;
805
+ clicks: number;
806
+ sales: number;
807
+ domains: number;
808
+ tags: number;
809
+ users: number;
810
+ ai: number;
811
+ api: number;
812
+ };
813
+ colors: {
814
+ bg: string;
815
+ text: string;
816
+ };
817
+ cta: {
818
+ text: string;
819
+ shortText: string;
820
+ href: string;
821
+ color: string;
822
+ };
823
+ featureTitle: string;
824
+ features: PlanFeature[];
825
+ } | {
826
+ name: string;
827
+ tagline: string;
828
+ link: string;
829
+ price: {
830
+ monthly: null;
831
+ yearly: null;
832
+ ids?: undefined;
833
+ };
834
+ limits: {
835
+ links: number;
836
+ clicks: number;
837
+ sales: number;
838
+ domains: number;
839
+ tags: number;
840
+ users: number;
841
+ ai: number;
842
+ api: number;
843
+ };
844
+ colors: {
845
+ bg: string;
846
+ text: string;
847
+ };
848
+ cta: {
849
+ text: string;
850
+ href: string;
851
+ color: string;
852
+ shortText?: undefined;
853
+ };
854
+ featureTitle: string;
855
+ features: PlanFeature[];
856
+ };
857
+ declare const getCurrentPlan: (plan: string) => {
858
+ name: string;
859
+ tagline: string;
860
+ price: {
861
+ monthly: number;
862
+ yearly: number;
863
+ ids?: undefined;
864
+ };
865
+ limits: {
866
+ links: number;
867
+ clicks: number;
868
+ sales: number;
869
+ domains: number;
870
+ tags: number;
871
+ users: number;
872
+ ai: number;
873
+ api: number;
874
+ };
875
+ colors: {
876
+ bg: string;
877
+ text: string;
878
+ };
879
+ cta: {
880
+ text: string;
881
+ href: string;
882
+ color: string;
883
+ shortText?: undefined;
884
+ };
885
+ featureTitle: string;
886
+ features: PlanFeature[];
887
+ link?: undefined;
888
+ } | {
889
+ name: string;
890
+ tagline: string;
891
+ link: string;
892
+ price: {
893
+ monthly: number;
894
+ yearly: number;
895
+ ids: string[];
896
+ };
897
+ limits: {
898
+ links: number;
899
+ clicks: number;
900
+ sales: number;
901
+ domains: number;
902
+ tags: number;
903
+ users: number;
904
+ ai: number;
905
+ api: number;
906
+ };
907
+ colors: {
908
+ bg: string;
909
+ text: string;
910
+ };
911
+ cta: {
912
+ text: string;
913
+ shortText: string;
914
+ href: string;
915
+ color: string;
916
+ };
917
+ featureTitle: string;
918
+ features: PlanFeature[];
919
+ } | {
920
+ name: string;
921
+ tagline: string;
922
+ link: string;
923
+ price: {
924
+ monthly: null;
925
+ yearly: null;
926
+ ids?: undefined;
927
+ };
928
+ limits: {
929
+ links: number;
930
+ clicks: number;
931
+ sales: number;
932
+ domains: number;
933
+ tags: number;
934
+ users: number;
935
+ ai: number;
936
+ api: number;
937
+ };
938
+ colors: {
939
+ bg: string;
940
+ text: string;
941
+ };
942
+ cta: {
943
+ text: string;
944
+ href: string;
945
+ color: string;
946
+ shortText?: undefined;
947
+ };
948
+ featureTitle: string;
949
+ features: PlanFeature[];
950
+ };
951
+ declare const getNextPlan: (plan?: string | null) => {
952
+ name: string;
953
+ tagline: string;
954
+ price: {
955
+ monthly: number;
956
+ yearly: number;
957
+ ids?: undefined;
958
+ };
959
+ limits: {
960
+ links: number;
961
+ clicks: number;
962
+ sales: number;
963
+ domains: number;
964
+ tags: number;
965
+ users: number;
966
+ ai: number;
967
+ api: number;
968
+ };
969
+ colors: {
970
+ bg: string;
971
+ text: string;
972
+ };
973
+ cta: {
974
+ text: string;
975
+ href: string;
976
+ color: string;
977
+ shortText?: undefined;
978
+ };
979
+ featureTitle: string;
980
+ features: PlanFeature[];
981
+ link?: undefined;
982
+ } | {
983
+ name: string;
984
+ tagline: string;
985
+ link: string;
986
+ price: {
987
+ monthly: number;
988
+ yearly: number;
989
+ ids: string[];
990
+ };
991
+ limits: {
992
+ links: number;
993
+ clicks: number;
994
+ sales: number;
995
+ domains: number;
996
+ tags: number;
997
+ users: number;
998
+ ai: number;
999
+ api: number;
1000
+ };
1001
+ colors: {
1002
+ bg: string;
1003
+ text: string;
1004
+ };
1005
+ cta: {
1006
+ text: string;
1007
+ shortText: string;
1008
+ href: string;
1009
+ color: string;
1010
+ };
1011
+ featureTitle: string;
1012
+ features: PlanFeature[];
1013
+ } | {
1014
+ name: string;
1015
+ tagline: string;
1016
+ link: string;
1017
+ price: {
1018
+ monthly: null;
1019
+ yearly: null;
1020
+ ids?: undefined;
1021
+ };
1022
+ limits: {
1023
+ links: number;
1024
+ clicks: number;
1025
+ sales: number;
1026
+ domains: number;
1027
+ tags: number;
1028
+ users: number;
1029
+ ai: number;
1030
+ api: number;
1031
+ };
1032
+ colors: {
1033
+ bg: string;
1034
+ text: string;
1035
+ };
1036
+ cta: {
1037
+ text: string;
1038
+ href: string;
1039
+ color: string;
1040
+ shortText?: undefined;
1041
+ };
1042
+ featureTitle: string;
1043
+ features: PlanFeature[];
1044
+ };
1045
+
1046
+ export { BUSINESS_PLAN as B, ENTERPRISE_PLAN as E, FREE_PLAN as F, PlanFeature as P, SELF_SERVE_PAID_PLANS as S, PLANS as a, PRO_PLAN as b, PUBLIC_PLANS as c, FREE_WORKSPACES_LIMIT as d, getPlanDetails as e, getCurrentPlan as f, getPlanFromPriceId as g, getNextPlan as h };