mayak-common-library-payload 0.1.0

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,1652 @@
1
+ import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import * as react from 'react';
3
+ import { ReactNode, FC, PropsWithChildren, MouseEventHandler, ReactElement, ButtonHTMLAttributes, MouseEvent, DetailedHTMLProps, InputHTMLAttributes, TextareaHTMLAttributes } from 'react';
4
+ import * as zustand from 'zustand';
5
+ import { StateCreator } from 'zustand';
6
+ import { CheckboxProps } from '@mui/material/Checkbox';
7
+ import * as _mui_material from '@mui/material';
8
+ import { FormControlLabelProps, SwitchProps, ListProps, IconButtonProps, ToggleButtonProps, ToggleButtonGroupProps as ToggleButtonGroupProps$1, PaginationItemOwnProps } from '@mui/material';
9
+ import { UseControllerProps } from 'react-hook-form';
10
+ import { CountryIso2 } from 'react-international-phone';
11
+ import { AccordionProps } from '@mui/material/Accordion';
12
+ import { OptionsType } from '@fancyapps/ui/types/Fancybox/options';
13
+ import { KeenSliderOptions } from 'keen-slider/react';
14
+ import * as _emotion_styled from '@emotion/styled';
15
+ import * as _mui_system from '@mui/system';
16
+
17
+ type SelectChildrenProps = {
18
+ ref?: any;
19
+ onClick?: any;
20
+ onClose?: any;
21
+ collapse?: any;
22
+ collapseParent?: any;
23
+ };
24
+ type LanguageSlugsType = {
25
+ [key: string]: string;
26
+ };
27
+ type localesProps = {
28
+ label: string;
29
+ locale: string;
30
+ }[];
31
+ interface LocaleSwitcherProps {
32
+ locales: localesProps;
33
+ homePage: string;
34
+ defLocale: string;
35
+ select?: boolean;
36
+ }
37
+ declare const SITE: {
38
+ KYIV: string;
39
+ DUBAI: string;
40
+ GLOBAL: string;
41
+ ZAPORIZHZHIA: string;
42
+ };
43
+ type Site = (typeof SITE)[keyof typeof SITE];
44
+ type TitlePosition = 'center' | 'left';
45
+
46
+ interface IWorker$2 {
47
+ imageUrl?: string | null;
48
+ description?: string;
49
+ firstName?: string;
50
+ lastName?: string;
51
+ fullName?: string;
52
+ position?: string;
53
+ instagram?: string;
54
+ facebook?: string;
55
+ youTube?: string;
56
+ linkedIn?: string;
57
+ phone?: string;
58
+ email?: string;
59
+ bgImageSrc?: string;
60
+ }
61
+ interface INumberText {
62
+ number?: number;
63
+ text?: string;
64
+ }
65
+ interface IBoxItem$6 {
66
+ text1?: string;
67
+ text2?: string;
68
+ text3?: string;
69
+ }
70
+ interface IAboutCompanyMain {
71
+ title?: string;
72
+ text1?: string;
73
+ text2?: string;
74
+ box?: IBoxItem$6[];
75
+ workerCeo?: IWorker$2;
76
+ className?: string;
77
+ site?: Site;
78
+ actionButton?: ReactNode;
79
+ }
80
+ declare function AboutCompanyMain({ title, text1, text2, box, workerCeo, className, site, actionButton, }: IAboutCompanyMain): react_jsx_runtime.JSX.Element;
81
+
82
+ interface IBox {
83
+ title?: string;
84
+ items: {
85
+ text1?: string;
86
+ text2?: string;
87
+ }[];
88
+ }
89
+ interface IAboutUsFirstBlockProps {
90
+ className?: string;
91
+ title?: string;
92
+ text1?: string;
93
+ text2?: string;
94
+ text3?: string;
95
+ textWithBorder?: string;
96
+ box: IBox;
97
+ actionButton?: ReactNode;
98
+ }
99
+ declare function AboutUsFirstBlock({ className, box, text1, text2, text3, textWithBorder, title, actionButton, }: IAboutUsFirstBlockProps): react_jsx_runtime.JSX.Element;
100
+
101
+ interface IBoxItem$5 {
102
+ icon?: string;
103
+ label?: string;
104
+ text?: string;
105
+ }
106
+ interface AmenitiesBlockProps {
107
+ className?: string;
108
+ title?: string;
109
+ box?: IBoxItem$5[];
110
+ }
111
+ declare const AmenitiesBlock: FC<AmenitiesBlockProps>;
112
+
113
+ interface IAnyLevelBlock {
114
+ block1: {
115
+ title?: string;
116
+ text1?: string;
117
+ text2?: string;
118
+ text3?: string;
119
+ };
120
+ block2: {
121
+ imageUrl?: string;
122
+ text1?: string;
123
+ };
124
+ className?: string;
125
+ }
126
+ declare function AnyLevelBlock({ block1, block2, className, }: IAnyLevelBlock): react_jsx_runtime.JSX.Element;
127
+
128
+ interface AnyQuestionsBlockProps {
129
+ worker?: IWorker$2;
130
+ className?: string;
131
+ title?: string;
132
+ }
133
+ declare const AnyQuestionsBlock: FC<PropsWithChildren & AnyQuestionsBlockProps>;
134
+
135
+ interface ArticleContentProps {
136
+ title?: string;
137
+ content?: ReactNode;
138
+ imageUrl?: string;
139
+ date?: string;
140
+ slugs?: LanguageSlugsType;
141
+ href?: string;
142
+ className?: string;
143
+ contactComponent?: ReactNode;
144
+ }
145
+ declare function ArticleContent({ title, content, imageUrl, date, slugs, href, className, contactComponent, }: ArticleContentProps): react_jsx_runtime.JSX.Element;
146
+
147
+ interface IArticle {
148
+ imageUrl?: string;
149
+ title?: string;
150
+ text?: string;
151
+ slug?: string;
152
+ href: string;
153
+ }
154
+ interface IArticleCard extends IArticle {
155
+ className?: string;
156
+ }
157
+ declare function ArticleCard({ imageUrl, className, title, text, slug, href, }: IArticleCard): react_jsx_runtime.JSX.Element;
158
+
159
+ interface ArticlesBlockProps {
160
+ title: string;
161
+ className?: string;
162
+ button?: boolean;
163
+ buttonLabel?: string;
164
+ titlePosition?: TitlePosition;
165
+ articles?: IArticle[];
166
+ href: string;
167
+ }
168
+ declare const ArticlesBlock: FC<ArticlesBlockProps>;
169
+
170
+ interface IArticlesFull {
171
+ className?: string;
172
+ title?: string;
173
+ articles?: IArticle[];
174
+ totalArticles?: number;
175
+ href: string;
176
+ }
177
+ declare function ArticlesFull({ title, articles, className, href, totalArticles, }: IArticlesFull): react_jsx_runtime.JSX.Element;
178
+
179
+ interface BannerBlockProps {
180
+ videoLink?: string;
181
+ bigText?: string;
182
+ smallText?: string;
183
+ className?: string;
184
+ imgLink?: string;
185
+ view?: 'column' | 'row';
186
+ }
187
+ declare const BannerBlock: FC<PropsWithChildren & BannerBlockProps>;
188
+
189
+ interface BannerBlock2Props {
190
+ image_url?: string;
191
+ bigText?: string;
192
+ text1?: string;
193
+ text2?: string;
194
+ className?: string;
195
+ }
196
+ declare const BannerBlock2: FC<BannerBlock2Props>;
197
+
198
+ interface IBoxItem$4 {
199
+ text1?: string;
200
+ text2?: string;
201
+ icon?: string;
202
+ }
203
+ interface BannerReferralProgramProps {
204
+ className?: string;
205
+ imgPerson?: string;
206
+ imgBack?: string;
207
+ strongText?: string;
208
+ text?: string;
209
+ box?: IBoxItem$4[];
210
+ personWidth: string;
211
+ personHeight: string;
212
+ }
213
+ declare const BannerReferralProgram: FC<BannerReferralProgramProps>;
214
+
215
+ interface BecomePartnerProps {
216
+ className?: string;
217
+ title?: string;
218
+ text1?: string;
219
+ text2?: string;
220
+ img?: string;
221
+ }
222
+ declare const BecomePartner: FC<BecomePartnerProps>;
223
+
224
+ interface IBenefit$1 {
225
+ imageUrl?: string;
226
+ text1?: string;
227
+ text2?: string;
228
+ }
229
+ interface BenefitsBlockProps {
230
+ benefits?: IBenefit$1[];
231
+ title?: string;
232
+ className?: string;
233
+ }
234
+ declare const BenefitsBlock: FC<BenefitsBlockProps>;
235
+
236
+ interface IBenefit {
237
+ imageUrl?: string;
238
+ text1?: string;
239
+ text2?: string;
240
+ icon?: ReactNode;
241
+ }
242
+ interface BenefitsVacanciesBlockProps {
243
+ title?: string;
244
+ benefits?: (IBenefit | null)[];
245
+ className?: string;
246
+ inlineItem?: boolean;
247
+ }
248
+ declare const BenefitsVacanciesBlock: FC<BenefitsVacanciesBlockProps>;
249
+
250
+ interface IComponentItem {
251
+ text1?: string;
252
+ text2?: string;
253
+ text3?: string;
254
+ }
255
+ interface BlockAboutCareerProps {
256
+ title?: string;
257
+ subtitle?: string;
258
+ text1?: string;
259
+ text2?: string;
260
+ boxTitle?: string;
261
+ boxItems?: IComponentItem[];
262
+ careerItems?: IComponentItem[];
263
+ className?: string;
264
+ videoLink?: string;
265
+ }
266
+ declare const BlockAboutCareer: FC<BlockAboutCareerProps>;
267
+
268
+ interface IOfficeItem {
269
+ phone?: string;
270
+ city?: string;
271
+ address?: string;
272
+ workTime?: string;
273
+ weekend?: boolean;
274
+ email?: string;
275
+ site?: string;
276
+ instagram?: string;
277
+ whatsapp?: string;
278
+ telegram?: string;
279
+ }
280
+ interface BlockContactsProps {
281
+ className?: string;
282
+ text?: string;
283
+ title?: string;
284
+ offices?: IOfficeItem[];
285
+ }
286
+ declare const BlockContacts: FC<PropsWithChildren & BlockContactsProps>;
287
+
288
+ interface BlockImagesProps {
289
+ className?: string;
290
+ images?: string[];
291
+ title?: string;
292
+ }
293
+ declare function BlockImages({ className, images, title, }: BlockImagesProps): react_jsx_runtime.JSX.Element;
294
+
295
+ interface IWorker$1 {
296
+ imageUrl?: string;
297
+ description?: string;
298
+ firstName?: string;
299
+ lastName?: string;
300
+ fullName?: string;
301
+ position?: string;
302
+ instagram?: string;
303
+ facebook?: string;
304
+ youTube?: string;
305
+ linkedIn?: string;
306
+ phone?: string;
307
+ email?: string;
308
+ }
309
+ interface BlockOurTeamProps {
310
+ title?: string;
311
+ text?: string;
312
+ team?: IWorker$1[];
313
+ className?: string;
314
+ full?: boolean;
315
+ }
316
+ declare const BlockOurTeam: FC<BlockOurTeamProps>;
317
+
318
+ interface IWorker {
319
+ imageUrl?: string;
320
+ description?: string;
321
+ firstName?: string;
322
+ lastName?: string;
323
+ fullName?: string;
324
+ position?: string;
325
+ instagram?: string;
326
+ facebook?: string;
327
+ youTube?: string;
328
+ linkedIn?: string;
329
+ phone?: string;
330
+ email?: string;
331
+ }
332
+ interface IBlockOurTeam {
333
+ title?: string;
334
+ text?: string;
335
+ team?: IWorker[];
336
+ className?: string;
337
+ }
338
+ declare function BlockOurTeamGrid({ team, title, text, className, }: IBlockOurTeam): react_jsx_runtime.JSX.Element | null;
339
+
340
+ interface CallConsultProps {
341
+ className?: string;
342
+ title?: string;
343
+ }
344
+ declare const CallConsult: FC<CallConsultProps>;
345
+
346
+ interface ICallMeBlock {
347
+ className?: string;
348
+ }
349
+ declare function CallMeBlock({ className }: ICallMeBlock): react_jsx_runtime.JSX.Element;
350
+
351
+ interface ICaseItem {
352
+ imageUrl?: string;
353
+ text1?: string;
354
+ text2?: string;
355
+ }
356
+ interface ICasesBlock {
357
+ className?: string;
358
+ caseItems?: ICaseItem[];
359
+ }
360
+ declare function CasesBlock({ caseItems, className }: ICasesBlock): react_jsx_runtime.JSX.Element;
361
+
362
+ interface ICategoryCard {
363
+ imageUrl?: string;
364
+ title?: string;
365
+ text?: string;
366
+ link?: string;
367
+ }
368
+ interface CatalogCategoriesBlockProps {
369
+ title?: string;
370
+ categories?: ICategoryCard[];
371
+ className?: string;
372
+ }
373
+ declare const CatalogCategoriesBlock: FC<CatalogCategoriesBlockProps>;
374
+
375
+ interface IBoxItem$3 {
376
+ label?: string;
377
+ icon?: string;
378
+ text?: string;
379
+ }
380
+ interface ClientTransferProcessProps {
381
+ className?: string;
382
+ title?: string;
383
+ text?: string;
384
+ box?: IBoxItem$3[];
385
+ actionComponent?: ReactNode;
386
+ }
387
+ declare const ClientTransferProcess: FC<ClientTransferProcessProps>;
388
+
389
+ interface IContactUsBlock {
390
+ className?: string;
391
+ phone: string;
392
+ manager: {
393
+ name: string;
394
+ imageUrl: string;
395
+ position: string;
396
+ };
397
+ }
398
+ declare function ContactUsBlock({ className, phone, manager, }: IContactUsBlock): react_jsx_runtime.JSX.Element;
399
+
400
+ interface ExpertiseBlockProps {
401
+ block1: {
402
+ title?: string;
403
+ text1?: string;
404
+ text2?: string;
405
+ };
406
+ block2: {
407
+ imageUrl?: string;
408
+ text1?: string;
409
+ text2?: string;
410
+ };
411
+ className?: string;
412
+ }
413
+ declare const ExpertiseBlock: FC<ExpertiseBlockProps>;
414
+
415
+ interface IFAQProps {
416
+ className?: string;
417
+ title?: string;
418
+ items?: {
419
+ question?: string;
420
+ answer?: string;
421
+ }[];
422
+ }
423
+ declare function FAQ({ className, items, title }: IFAQProps): react_jsx_runtime.JSX.Element;
424
+
425
+ interface IFormBlock {
426
+ className?: string;
427
+ }
428
+ declare function FormBlock({ className }: IFormBlock): react_jsx_runtime.JSX.Element;
429
+
430
+ interface GalleryProps {
431
+ images: {
432
+ id: number;
433
+ url: string;
434
+ realtyId: number;
435
+ }[];
436
+ imagePlaceholders?: string[];
437
+ alt: string;
438
+ site: Site;
439
+ }
440
+ declare const Gallery: FC<GalleryProps>;
441
+
442
+ interface JoinTeamBlockProps {
443
+ imageUrl?: string;
444
+ title?: string;
445
+ className?: string;
446
+ text?: string;
447
+ }
448
+ declare const JoinTeamBlock: FC<JoinTeamBlockProps>;
449
+
450
+ interface IItem$1 {
451
+ text1?: string;
452
+ }
453
+ interface LegalSupportProps {
454
+ title?: string;
455
+ text?: string;
456
+ imageUrl?: string;
457
+ title2?: string;
458
+ items?: IItem$1[];
459
+ className?: string;
460
+ }
461
+ declare const LegalSupport: FC<LegalSupportProps>;
462
+
463
+ interface IOffices {
464
+ offices?: IOfficeItem[];
465
+ className?: string;
466
+ }
467
+ declare function Offices({ className, offices }: IOffices): react_jsx_runtime.JSX.Element;
468
+
469
+ interface OfficesBlockProps {
470
+ text?: string;
471
+ className?: string;
472
+ offices?: IOfficeItem[];
473
+ title?: string;
474
+ }
475
+ declare const OfficesBlock: FC<OfficesBlockProps>;
476
+
477
+ interface IVacancy {
478
+ slug?: string;
479
+ position?: string;
480
+ salary?: string;
481
+ location?: string;
482
+ updatedAt?: string;
483
+ qualitiesText?: any;
484
+ shortDescription?: ReactNode;
485
+ fullDescription?: ReactNode;
486
+ }
487
+ interface OtherVacanciesProps {
488
+ vacancies?: IVacancy[];
489
+ className?: string;
490
+ href: string;
491
+ }
492
+ declare function OtherVacancies({ vacancies, className, href, }: OtherVacanciesProps): react_jsx_runtime.JSX.Element;
493
+
494
+ interface IBlock {
495
+ strongText?: string;
496
+ text?: string;
497
+ }
498
+ interface OurAdvantagesProps {
499
+ className?: string;
500
+ title?: string;
501
+ text1?: string;
502
+ text2?: string;
503
+ images?: string[];
504
+ block?: IBlock;
505
+ }
506
+ declare const OurAdvantages: FC<OurAdvantagesProps>;
507
+
508
+ interface IOurServicesItem {
509
+ text1?: string;
510
+ text2?: string;
511
+ }
512
+ interface OurServicesProps {
513
+ className?: string;
514
+ items?: IOurServicesItem[];
515
+ title?: string;
516
+ }
517
+ declare const OurServices: FC<OurServicesProps>;
518
+
519
+ interface PopularAreasProps {
520
+ className?: string;
521
+ title?: string;
522
+ items?: {
523
+ label?: string;
524
+ text?: string;
525
+ imgSrc?: string;
526
+ rows?: number;
527
+ cols?: number;
528
+ slug?: string;
529
+ }[];
530
+ href: string;
531
+ }
532
+ declare const PopularAreas: FC<PopularAreasProps>;
533
+
534
+ declare const ObjectProperties: FC<PropsWithChildren>;
535
+
536
+ interface IBoxItem$2 {
537
+ img?: string;
538
+ label?: string;
539
+ from?: string;
540
+ to?: string;
541
+ description?: string[];
542
+ date?: string;
543
+ income?: string;
544
+ }
545
+ interface IPortfoliosProps {
546
+ className?: string;
547
+ title?: string;
548
+ box?: IBoxItem$2[];
549
+ actionComponent?: ReactNode;
550
+ }
551
+ declare function Portfolios({ className, box, title, actionComponent, }: IPortfoliosProps): react_jsx_runtime.JSX.Element;
552
+
553
+ interface IBoxItem$1 {
554
+ text1?: string;
555
+ text2?: string;
556
+ }
557
+ interface ReferralProgramFirstBlockProps {
558
+ title?: string;
559
+ subtitle?: string;
560
+ text1?: string;
561
+ text2?: string;
562
+ box?: IBoxItem$1[];
563
+ className?: string;
564
+ actionComponent?: ReactNode;
565
+ }
566
+ declare const ReferralProgramFirstBlock: FC<ReferralProgramFirstBlockProps>;
567
+
568
+ interface IServicesTexts {
569
+ title?: string;
570
+ subtitle?: string;
571
+ text1?: string;
572
+ text2?: string;
573
+ title2?: string;
574
+ text3?: string;
575
+ className?: string;
576
+ }
577
+ declare function ServicesTexts({ text1, text2, text3, title2, title, subtitle, className, }: IServicesTexts): react_jsx_runtime.JSX.Element;
578
+
579
+ interface SocialBlockProps {
580
+ className?: string;
581
+ instagram?: string;
582
+ whatsapp?: string;
583
+ telegram?: string;
584
+ }
585
+ declare const SocialBlock: FC<SocialBlockProps>;
586
+
587
+ interface SocialBlockMainProps {
588
+ className?: string;
589
+ instagram?: string;
590
+ facebook?: string;
591
+ youtube?: string;
592
+ linkedIn?: string;
593
+ }
594
+ declare const SocialBlockMain: FC<SocialBlockMainProps>;
595
+
596
+ interface TeamWorkerBlockProps {
597
+ image_url?: string;
598
+ text?: string;
599
+ name?: string;
600
+ position?: string;
601
+ social?: {
602
+ path?: string;
603
+ icon?: ReactNode;
604
+ }[];
605
+ turn?: 'right' | 'left';
606
+ bgSrc?: string;
607
+ }
608
+ declare const TeamWorkerBlock: FC<TeamWorkerBlockProps>;
609
+
610
+ interface TextBlockProps {
611
+ className?: string;
612
+ title?: string;
613
+ text?: string;
614
+ }
615
+ declare const TextBlock: FC<TextBlockProps>;
616
+
617
+ declare const ThanksBlock: () => react_jsx_runtime.JSX.Element;
618
+
619
+ interface ITrustUs {
620
+ className?: string;
621
+ title?: string;
622
+ text?: string;
623
+ numbers?: INumberText[];
624
+ imageUrl?: string;
625
+ }
626
+ declare function TrustUs({ className, title, text, numbers, imageUrl, }: ITrustUs): react_jsx_runtime.JSX.Element;
627
+
628
+ interface VacancyBoxInfoProps {
629
+ label?: string;
630
+ updatedAt?: string;
631
+ salary?: string;
632
+ location?: string;
633
+ button?: boolean;
634
+ className?: string;
635
+ slug?: string;
636
+ href?: string;
637
+ inLink?: boolean;
638
+ linkLabel?: string;
639
+ }
640
+ declare const VacancyBoxInfo: FC<VacancyBoxInfoProps>;
641
+
642
+ interface VacancyInfoItemsProps {
643
+ updatedAt?: string;
644
+ salary?: string;
645
+ location?: string;
646
+ innerClasses?: string;
647
+ }
648
+ declare const VacancyInfoItems: FC<VacancyInfoItemsProps>;
649
+
650
+ interface IVacancyContent {
651
+ title?: string;
652
+ description?: ReactNode;
653
+ date?: string;
654
+ salary?: string;
655
+ location?: string;
656
+ slugs?: LanguageSlugsType;
657
+ className?: string;
658
+ phone?: string;
659
+ email?: string;
660
+ manager?: any;
661
+ href?: string;
662
+ }
663
+ declare function VacancyContent({ title, salary, date, description, location, slugs, className, children, phone, email, manager, href, }: IVacancyContent & PropsWithChildren): react_jsx_runtime.JSX.Element;
664
+
665
+ interface IItem {
666
+ text1?: string;
667
+ }
668
+ interface IBlockItems {
669
+ title?: string;
670
+ items?: IItem[];
671
+ }
672
+ interface IWeOffer {
673
+ title?: string;
674
+ sellerItems?: IBlockItems;
675
+ buyerItems?: IBlockItems;
676
+ imageUrl: string;
677
+ className?: string;
678
+ }
679
+ declare const WeOffer: FC<IWeOffer>;
680
+
681
+ interface WeTakeFullProps {
682
+ className?: string;
683
+ imgSrc?: string;
684
+ title?: string;
685
+ text?: string;
686
+ actionComponent?: ReactNode;
687
+ }
688
+ declare const WeTakeFull: FC<WeTakeFullProps>;
689
+
690
+ interface IWhatIsYourProps {
691
+ className?: string;
692
+ title?: string;
693
+ text1?: string;
694
+ text2?: string;
695
+ text3?: string;
696
+ }
697
+ declare function WhatIsYour({ className, text3, text2, text1, title, }: IWhatIsYourProps): react_jsx_runtime.JSX.Element;
698
+
699
+ interface TextImageTileBlockProps {
700
+ className?: string;
701
+ title?: string | null;
702
+ text?: ReactNode;
703
+ image?: string;
704
+ actionComponent?: ReactNode;
705
+ turn?: 'right' | 'left';
706
+ }
707
+ declare const TextImageTileBlock: FC<TextImageTileBlockProps>;
708
+
709
+ interface IBoxItem {
710
+ number?: number;
711
+ label?: string;
712
+ text?: string;
713
+ }
714
+ interface WhyShouldWorkProps {
715
+ className?: string;
716
+ title?: string;
717
+ text?: string;
718
+ box?: IBoxItem[];
719
+ actionComponent?: ReactNode;
720
+ }
721
+ declare const WhyShouldWork: FC<WhyShouldWorkProps>;
722
+
723
+ interface IWheWeItem {
724
+ imageUrl?: string;
725
+ text1?: string;
726
+ text2?: string;
727
+ }
728
+ interface WhyWeProps {
729
+ imageUrl?: string;
730
+ className?: string;
731
+ title?: string;
732
+ items?: IWheWeItem[];
733
+ }
734
+ declare const WhyWe: FC<WhyWeProps>;
735
+
736
+ interface ObjectInfoBlockProps {
737
+ title: string | null;
738
+ text: string | null;
739
+ properties: {
740
+ title: string;
741
+ desc?: string | null;
742
+ href?: string;
743
+ }[];
744
+ className?: string;
745
+ actionComponent?: ReactNode;
746
+ }
747
+ declare const ObjectInfoBlock: ({ title, text, properties, className, actionComponent, }: ObjectInfoBlockProps) => react_jsx_runtime.JSX.Element;
748
+
749
+ interface PaymentPlanBlockProps {
750
+ data: PresentBlockProps[];
751
+ }
752
+ interface PresentBlockProps {
753
+ present: string;
754
+ description: string;
755
+ }
756
+ declare const PaymentPlanBlock: FC<PaymentPlanBlockProps>;
757
+
758
+ interface FloorPlansBlockProps {
759
+ }
760
+ declare const FloorPlansBlock: FC<FloorPlansBlockProps>;
761
+
762
+ interface FullScreenImageProps {
763
+ src: string;
764
+ alt?: string | null;
765
+ tags?: {
766
+ label: string;
767
+ href?: string;
768
+ }[];
769
+ className?: string;
770
+ }
771
+ declare const FullScreenImage: FC<FullScreenImageProps>;
772
+
773
+ interface GalleryBlockProps {
774
+ className?: string;
775
+ images?: string[];
776
+ imagePlaceholders?: string[];
777
+ imageAlt?: string;
778
+ title?: string;
779
+ }
780
+ declare const GalleryBlock: FC<GalleryBlockProps>;
781
+
782
+ declare const ContactDubaiBlock: FC<{
783
+ className?: string;
784
+ actionComponent?: ReactNode;
785
+ }>;
786
+
787
+ interface NewProjectCardProps {
788
+ slug?: string;
789
+ images?: Array<string | null>;
790
+ title?: string;
791
+ address?: string;
792
+ price?: string;
793
+ developer?: string;
794
+ houseTypes?: string[];
795
+ href: string;
796
+ handover?: string;
797
+ }
798
+ declare const NewProjectCard: FC<NewProjectCardProps>;
799
+
800
+ interface ICatalogNewProjectsProps {
801
+ className?: string;
802
+ href: string;
803
+ newProjects?: NewProjectCardProps[];
804
+ }
805
+ declare function CatalogNewProjects({ className, href, newProjects, }: ICatalogNewProjectsProps): react_jsx_runtime.JSX.Element;
806
+
807
+ interface IProjectsSliderProps {
808
+ className?: string;
809
+ projects?: NewProjectCardProps[];
810
+ title: string;
811
+ href: string;
812
+ }
813
+ declare function ProjectsSlider({ className, projects, title, href, }: IProjectsSliderProps): react_jsx_runtime.JSX.Element;
814
+
815
+ interface IServiceItem {
816
+ imageUrl?: string;
817
+ title?: string;
818
+ text?: string;
819
+ slug?: string;
820
+ href: string;
821
+ }
822
+ interface ServicesFullProps {
823
+ className?: string;
824
+ services?: IServiceItem[];
825
+ totalServices?: number;
826
+ href: string;
827
+ linkLabel: string;
828
+ }
829
+ declare const ServicesFull: FC<ServicesFullProps>;
830
+
831
+ interface DeveloperBannerProps {
832
+ className?: string;
833
+ imgBanner?: string;
834
+ imgLogo?: string;
835
+ }
836
+ declare const DeveloperBanner: FC<DeveloperBannerProps>;
837
+
838
+ interface IDeveloperTwoBlocks {
839
+ className?: string;
840
+ title?: string;
841
+ text?: string;
842
+ block: {
843
+ projects?: string;
844
+ priceFrom?: string;
845
+ begin?: string;
846
+ };
847
+ }
848
+ declare function DeveloperTwoBlocks({ className, block, text, title, }: IDeveloperTwoBlocks): react_jsx_runtime.JSX.Element;
849
+
850
+ interface ImageAndTextBlockProps {
851
+ className?: string;
852
+ imgSrc?: string;
853
+ }
854
+ declare const ImageAndTextBlock: FC<PropsWithChildren & ImageAndTextBlockProps>;
855
+
856
+ interface TwoTextColumnProps {
857
+ className?: string;
858
+ info: {
859
+ title: string;
860
+ text: string;
861
+ }[];
862
+ }
863
+ declare const TwoTextColumn: FC<TwoTextColumnProps>;
864
+
865
+ interface RealtyTitleProps {
866
+ title?: string | null;
867
+ article?: string | number | null;
868
+ }
869
+ declare const RealtyTitle: FC<RealtyTitleProps>;
870
+
871
+ interface RealtyPriceProps {
872
+ realtyForRent?: boolean;
873
+ price: string;
874
+ currencySwitcher?: ReactNode;
875
+ }
876
+ declare const RealtyPrice: FC<RealtyPriceProps>;
877
+
878
+ declare enum ESTagEnum {
879
+ Borough = "borough",
880
+ District = "district",
881
+ City = "city",
882
+ Metro = "metro",
883
+ Street = "street",
884
+ Complex = "complex",
885
+ Region = "region",
886
+ Property = "property",
887
+ Town = "town",
888
+ County = "county"
889
+ }
890
+
891
+ type MenuItem = {
892
+ path: string;
893
+ title: string;
894
+ };
895
+ interface IFooter {
896
+ instagram?: string;
897
+ facebook?: string;
898
+ youtube?: string;
899
+ linkedIn?: string;
900
+ menuItems: MenuItem[];
901
+ mainPhone?: string;
902
+ site: Site;
903
+ homePage: string;
904
+ }
905
+ type BreadCrumbsItem = {
906
+ label: string;
907
+ path: string;
908
+ tag?: ESTagEnum;
909
+ };
910
+
911
+ interface RealtyAddressProps {
912
+ address?: string;
913
+ addressLinks: Array<BreadCrumbsItem | undefined>;
914
+ metros?: BreadCrumbsItem[] | null;
915
+ }
916
+ declare const RealtyAddress: FC<RealtyAddressProps>;
917
+
918
+ interface RealtyDetailsProps {
919
+ realtyType?: {
920
+ machineName?: string | null;
921
+ value?: string;
922
+ };
923
+ areaTotal?: number | string | null;
924
+ areaLand?: string | null;
925
+ areaLiving?: string | null;
926
+ areaKitchen?: string | null;
927
+ rooms?: number | null;
928
+ bathrooms?: number | null;
929
+ parkingCount?: string | number | null;
930
+ floor?: string | null;
931
+ totalFloors?: string | null;
932
+ repair?: string | null;
933
+ roomCountLink?: string | null;
934
+ propertyType?: string | null;
935
+ furnishStatus?: string | null;
936
+ construction?: string | null;
937
+ stars?: string | null;
938
+ className?: string;
939
+ site: Site;
940
+ }
941
+ declare const RealtyDetails: FC<RealtyDetailsProps>;
942
+
943
+ interface RealtyDescriptionProps {
944
+ description?: string | null;
945
+ }
946
+ declare const RealtyDescription: FC<RealtyDescriptionProps>;
947
+
948
+ interface CatalogContainerProps {
949
+ className?: string;
950
+ emptyCatalogMessage?: string;
951
+ }
952
+ declare const CatalogContainer: FC<CatalogContainerProps & PropsWithChildren>;
953
+
954
+ interface SliderContainerProps {
955
+ className?: string;
956
+ buttonText?: string;
957
+ buttonHref?: string;
958
+ title?: string;
959
+ titleTag?: 'h2' | 'h3';
960
+ slidesView?: 3 | 4 | 6;
961
+ dots?: boolean;
962
+ dotsOnMobile?: boolean;
963
+ classNameDots?: string;
964
+ navigation?: boolean;
965
+ loop?: boolean;
966
+ fullScreen?: boolean;
967
+ }
968
+ declare const SliderContainer: FC<SliderContainerProps & PropsWithChildren>;
969
+
970
+ interface MainContainerProps {
971
+ className?: string;
972
+ }
973
+ declare const MainContainer: FC<PropsWithChildren & MainContainerProps>;
974
+
975
+ declare const PageContainer: FC<PropsWithChildren & {
976
+ className?: string;
977
+ }>;
978
+
979
+ interface VacancyContainerProps {
980
+ title?: string;
981
+ className?: string;
982
+ }
983
+ declare const VacancyContainer: FC<VacancyContainerProps & PropsWithChildren>;
984
+
985
+ interface CardsCatalogProps {
986
+ className?: string;
987
+ banner?: ReactNode;
988
+ bannerSequence?: number;
989
+ }
990
+ declare const CardsCatalog: FC<CardsCatalogProps & PropsWithChildren>;
991
+
992
+ declare function useWindowSize(): {
993
+ windowSize: number;
994
+ xxs: boolean;
995
+ xs: boolean;
996
+ sm: boolean;
997
+ md: boolean;
998
+ lg: boolean;
999
+ xl: boolean;
1000
+ loading: boolean;
1001
+ };
1002
+
1003
+ declare enum hrefSlugPrefix {
1004
+ CATALOG = "/catalog/object/",
1005
+ NEWS = "/news/",
1006
+ BLOG = "/blog/",
1007
+ VACANCY = "/vacancies/",
1008
+ CAREERS = "/careers/"
1009
+ }
1010
+ interface LocaleSlugSlice {
1011
+ slugs: LanguageSlugsType | undefined;
1012
+ hrefPrefix: string | hrefSlugPrefix | undefined;
1013
+ }
1014
+ interface LocaleSlugActions {
1015
+ setLocaleSlugs: (_slugs?: LanguageSlugsType, hrefPrefix?: string | hrefSlugPrefix) => void;
1016
+ }
1017
+ type LocaleSlug = LocaleSlugSlice & LocaleSlugActions;
1018
+ declare const createLocaleSlugSlice: StateCreator<LocaleSlug>;
1019
+ declare const useLocaleSlugStore: zustand.UseBoundStore<zustand.StoreApi<LocaleSlug>>;
1020
+
1021
+ type LayoutStore = Modal;
1022
+ declare enum MODAL_COMPONENT {
1023
+ GENERAL = "GENERAL",
1024
+ THANKS = "THANKS",
1025
+ REQUEST = "REQUEST"
1026
+ }
1027
+ declare const MODAL_COMPONENTS: any;
1028
+ declare const MODAL_TITLES: any;
1029
+ interface ModalSlice {
1030
+ openModal: boolean;
1031
+ typeModal?: MODAL_COMPONENT;
1032
+ dataModal?: any;
1033
+ additionalCloseBtn?: boolean;
1034
+ bgColor?: 'gold' | 'white';
1035
+ }
1036
+ interface ModalActions {
1037
+ showModal: (type: MODAL_COMPONENT, data?: any, additionalCloseBtn?: boolean, bgColor?: 'gold' | 'white') => void;
1038
+ hideModal: () => void;
1039
+ }
1040
+ type Modal = ModalSlice & ModalActions;
1041
+ declare const createModalSlice: StateCreator<Modal>;
1042
+ declare const useLayoutStore: zustand.UseBoundStore<zustand.StoreApi<Modal>>;
1043
+
1044
+ declare const Header: FC<PropsWithChildren & {
1045
+ locale: string;
1046
+ homePage: string;
1047
+ oneLogo?: string;
1048
+ selectPart: ReactNode;
1049
+ }>;
1050
+
1051
+ interface HeaderContactButtonProps {
1052
+ onClick: MouseEventHandler<HTMLButtonElement> | undefined;
1053
+ title: string;
1054
+ homePage: string;
1055
+ }
1056
+ declare const _default: react.NamedExoticComponent<HeaderContactButtonProps>;
1057
+
1058
+ declare function Footer({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, }: IFooter): react_jsx_runtime.JSX.Element;
1059
+
1060
+ interface IFooter2 {
1061
+ instagram?: string;
1062
+ city?: string;
1063
+ location?: string;
1064
+ facebook?: string;
1065
+ youtube?: string;
1066
+ linkedIn?: string;
1067
+ menuItems: MenuItem[];
1068
+ mainPhone?: string;
1069
+ site: Site;
1070
+ homePage: string;
1071
+ additionalMenu: {
1072
+ items: {
1073
+ path: string;
1074
+ title: string;
1075
+ }[];
1076
+ };
1077
+ oneLogo?: string;
1078
+ }
1079
+ declare function Footer2({ instagram, facebook, youtube, linkedIn, menuItems, mainPhone, site, homePage, additionalMenu, oneLogo, city, location, }: IFooter2): react_jsx_runtime.JSX.Element;
1080
+
1081
+ declare const HeaderMob: FC<PropsWithChildren & {
1082
+ locale: string;
1083
+ homePage: string;
1084
+ }>;
1085
+
1086
+ interface IMainBoxProps {
1087
+ children: ReactNode;
1088
+ className?: string;
1089
+ }
1090
+ declare function Main({ children, className }: IMainBoxProps): react_jsx_runtime.JSX.Element;
1091
+
1092
+ interface LogoBlockProps {
1093
+ className?: string;
1094
+ small?: boolean;
1095
+ locale: string;
1096
+ homePage: string;
1097
+ oneLogo?: string;
1098
+ }
1099
+ declare const LogoBlock: FC<LogoBlockProps>;
1100
+
1101
+ declare const LogoBlockWhite: () => react_jsx_runtime.JSX.Element;
1102
+
1103
+ interface BadgeProps {
1104
+ content?: number;
1105
+ className?: string;
1106
+ showZero?: boolean;
1107
+ }
1108
+ declare const Badge: FC<BadgeProps & PropsWithChildren>;
1109
+
1110
+ interface CustomCheckboxProps {
1111
+ labelProps?: FormControlLabelProps;
1112
+ checkboxProps?: CheckboxProps;
1113
+ label?: string;
1114
+ toggleView?: boolean;
1115
+ }
1116
+ declare const Checkbox: FC<CustomCheckboxProps>;
1117
+
1118
+ interface SelectProProps$1 {
1119
+ placeholder?: string;
1120
+ childTitle?: string;
1121
+ clickComponent?: ReactElement;
1122
+ btnStartIcon?: ReactElement;
1123
+ actionsComponent?: ReactElement;
1124
+ intermediateChild?: ReactElement;
1125
+ startIcon?: ReactElement;
1126
+ disableCloseButton?: boolean;
1127
+ fullContainerWidth?: boolean;
1128
+ overContainerWidth?: boolean;
1129
+ overButton?: boolean;
1130
+ small?: boolean;
1131
+ fullWidth?: boolean;
1132
+ freeChildWidth?: boolean;
1133
+ freeChildHeight?: boolean;
1134
+ btnStyles?: string;
1135
+ placeholderStyles?: string;
1136
+ whiteArrow?: boolean;
1137
+ openUp?: boolean;
1138
+ controlled?: boolean;
1139
+ transparentView?: boolean;
1140
+ clickComponentView?: boolean;
1141
+ withoutDropdownIcon?: boolean;
1142
+ openOnHover?: boolean;
1143
+ smallDropdown?: boolean;
1144
+ }
1145
+ declare const Select: FC<PropsWithChildren & SelectProProps$1>;
1146
+
1147
+ interface SelectProProps {
1148
+ placeholder?: string;
1149
+ fullContainerWidth?: boolean;
1150
+ overButton?: boolean;
1151
+ small?: boolean;
1152
+ upperCase?: boolean;
1153
+ bold?: boolean;
1154
+ }
1155
+ declare const SimpleSelect: FC<PropsWithChildren & SelectProProps>;
1156
+
1157
+ type outLinkType = 'viber' | 'telegram' | 'tel' | 'googleMaps' | 'mail' | 'link' | 'whatsapp';
1158
+
1159
+ interface ILinkOut {
1160
+ data?: string;
1161
+ type: outLinkType;
1162
+ title: string | ReactNode;
1163
+ className?: string;
1164
+ blank?: boolean;
1165
+ }
1166
+ declare function LinkOut({ data, type, title, className, blank, }: ILinkOut): react_jsx_runtime.JSX.Element;
1167
+
1168
+ interface LinkIconBorderProps {
1169
+ title: string;
1170
+ icon: ReactNode;
1171
+ className?: string;
1172
+ classesText?: string;
1173
+ color?: 'dark' | 'gray';
1174
+ onClick?: Function;
1175
+ href?: string;
1176
+ }
1177
+ declare const LinkIconBorder: FC<LinkIconBorderProps>;
1178
+
1179
+ interface CustomSwitchProps {
1180
+ beforeText?: string;
1181
+ afterText?: string;
1182
+ }
1183
+ declare const Switch: FC<CustomSwitchProps & SwitchProps>;
1184
+
1185
+ declare const LocaleSwitch: FC<LocaleSwitcherProps>;
1186
+
1187
+ interface SiteSwitcherProps {
1188
+ currentSite: Site;
1189
+ onlyGlobal?: boolean;
1190
+ select?: boolean;
1191
+ }
1192
+ declare const SiteSwitch: FC<SiteSwitcherProps>;
1193
+
1194
+ declare const LocaleSwitchToggle: FC<LocaleSwitcherProps>;
1195
+
1196
+ declare const CatalogViewSwitch: () => react_jsx_runtime.JSX.Element;
1197
+
1198
+ interface ChipProps {
1199
+ label?: string;
1200
+ onDelete?: () => void;
1201
+ className?: string;
1202
+ labelClassName?: string;
1203
+ icon?: ReactNode;
1204
+ view: 'black' | 'line' | 'line-light' | 'white' | 'silver' | 'accent' | 'accent-white';
1205
+ }
1206
+ declare const Chip: FC<ChipProps>;
1207
+
1208
+ interface ObjectPropertyProps {
1209
+ icon: 'LAND' | 'COMMERCE' | 'HOUSE' | 'ROOM_COUNT' | 'AREA_TOTAL' | 'AREA_LAND' | 'AREA_LIVING' | 'AREA_KITCHEN' | 'FLOORS_TOTAL' | 'FLOOR' | 'REPAIR' | 'PARKING' | 'BATH_COUNT';
1210
+ label: string;
1211
+ path?: string;
1212
+ }
1213
+ declare const ObjectPropertyChip: FC<ObjectPropertyProps>;
1214
+
1215
+ declare const List: FC<ListProps>;
1216
+
1217
+ declare enum MACHINE_NAME {
1218
+ RESIDENTIAL = "residential",
1219
+ COMMERCE = "commerce",
1220
+ LAND = "land",
1221
+ SALE = "sale",
1222
+ RENT = "rent",
1223
+ DAILY = "daily",
1224
+ FLAT = "flat",
1225
+ HOUSE = "house",
1226
+ OFFICE = "office",
1227
+ TRADE_AREA = "trade_area",
1228
+ WAREHOUSE = "warehouse",
1229
+ ROOM_COUNT = "roomCount",
1230
+ AREA_TOTAL = "areaTotal",
1231
+ AREA_LAND = "areaLand",
1232
+ AREA_LIVING = "areaLiving",
1233
+ AREA_KITCHEN = "areaKitchen",
1234
+ FLOORS_TOTAL = "totalFloors",
1235
+ FLOOR = "floor",
1236
+ REMONT = "remont",
1237
+ PRODUCTION_FACILITY = "production_facility",
1238
+ FOOD_SERVICE_OBJECT = "food_service_object",
1239
+ SERVICE_OBJECT = "service_object",
1240
+ OTHER_OBJECT = "other_object",
1241
+ HOTEL_ROOM = "hotel_room",
1242
+ SHOP = "shop",
1243
+ WHOLE_BUILDING = "whole_building",
1244
+ LAND_IND_CONSTRUCTION = "ind_construction",
1245
+ LAND_GARDEN = "garden",
1246
+ LAND_AGRICULTURAL = "agricultural",
1247
+ LAND_COMMERCIAL = "commercial",
1248
+ APARTMENTS = "apartments",
1249
+ VILLA = "villa",
1250
+ PENTHOUSE = "penthouse",
1251
+ TOWNHOUSE = "townhouse",
1252
+ DUPLEX = "duplex",
1253
+ FLAT_RENT = "flats-rent",
1254
+ HOUSE_RENT = "houses-rent",
1255
+ ROOM_RENT = "rooms-rent",
1256
+ COMMERCIAL_RENT = "commercial-rent",
1257
+ FLAT_SALE = "flats-sale",
1258
+ HOUSE_SALE = "houses-sale",
1259
+ ROOM_SALE = "rooms-sale",
1260
+ COMMERCIAL_SALE = "commercial-sale",
1261
+ LAND_SALE = "land-sale",
1262
+ VALUE_1 = "VALUE_1",
1263
+ VALUE_2 = "VALUE_2",
1264
+ VALUE_3 = "VALUE_3",
1265
+ VALUE_4 = "VALUE_4",
1266
+ VALUE_5 = "VALUE_5",
1267
+ VALUE_6 = "VALUE_6",
1268
+ PRICE_UP = "price-up",
1269
+ PRICE_DOWN = "price-down",
1270
+ NEW = "new",
1271
+ OLD = "old",
1272
+ P_HOUSE_TYPE = "tip-budinku",
1273
+ P_WALL_MATERIAL = "material-stin",
1274
+ P_REPAIR = "remont",
1275
+ P_LAYOUT = "planuvannya",
1276
+ P_CLASS_OF_HOUSING = "klas-zhitla",
1277
+ P_ROOM_LAYOUT = "shema-kimnat",
1278
+ CITY = "city",
1279
+ BATH_COUNT = "bathCount",
1280
+ PARKING = "parting",
1281
+ PROPERTY_TYPE = "property-type",
1282
+ CONSTRUCTION = "construction",
1283
+ FURNISH_STATUS = "furnish-status",
1284
+ STATUS_OF_BUILDING = "status-building",
1285
+ STARS = "stars"
1286
+ }
1287
+ type SortKeysType = MACHINE_NAME.PRICE_UP | MACHINE_NAME.PRICE_DOWN | MACHINE_NAME.NEW | MACHINE_NAME.OLD;
1288
+ declare enum SORT_NAME {
1289
+ 'price' = "price",
1290
+ 'novelty' = "novelty"
1291
+ }
1292
+
1293
+ interface ListItemProps {
1294
+ title: string;
1295
+ value?: MACHINE_NAME | string;
1296
+ tag?: string;
1297
+ icon?: ReactElement;
1298
+ subTitle?: string;
1299
+ bold?: boolean;
1300
+ onClickHandler: (value?: MACHINE_NAME | string, tag?: string) => void;
1301
+ active?: boolean;
1302
+ }
1303
+ declare const ListItem: FC<ListItemProps>;
1304
+
1305
+ interface TermListProps {
1306
+ options: {
1307
+ name: string;
1308
+ slug: string;
1309
+ desc?: string;
1310
+ tag?: string;
1311
+ icon?: ReactElement;
1312
+ }[];
1313
+ currentValue?: string;
1314
+ label?: string;
1315
+ collapseParent?: any;
1316
+ onChange: (value?: string, tag?: string) => void;
1317
+ keyActive?: boolean;
1318
+ }
1319
+ declare const TermList: (props: TermListProps) => react_jsx_runtime.JSX.Element;
1320
+
1321
+ interface CustomButtonProps extends PropsWithChildren {
1322
+ bolt?: boolean;
1323
+ border?: boolean;
1324
+ base?: boolean;
1325
+ className?: string;
1326
+ iconClassName?: string;
1327
+ onClick?: () => void;
1328
+ endIcon?: ReactNode;
1329
+ }
1330
+ declare const Button: FC<CustomButtonProps>;
1331
+
1332
+ interface ButtonDarkProps extends ButtonHTMLAttributes<HTMLButtonElement> {
1333
+ title: string;
1334
+ className?: string;
1335
+ view?: 'dark' | 'transparent' | 'header';
1336
+ icon?: ReactNode;
1337
+ minWidth?: boolean;
1338
+ onClick?: MouseEventHandler<HTMLButtonElement>;
1339
+ loading?: boolean;
1340
+ }
1341
+ declare const ButtonDark: FC<ButtonDarkProps>;
1342
+
1343
+ interface CustomIconButtonProps extends IconButtonProps, PropsWithChildren {
1344
+ isblack?: string;
1345
+ }
1346
+ declare const IconButton: FC<CustomIconButtonProps>;
1347
+
1348
+ interface ToggleSortProps {
1349
+ name: SORT_NAME;
1350
+ label: string;
1351
+ value?: SortKeysType;
1352
+ selected: boolean;
1353
+ flip: boolean;
1354
+ defFlip?: boolean;
1355
+ }
1356
+ declare const ToggleSort: FC<ToggleSortProps>;
1357
+
1358
+ declare const SubmitSelectButton: (props: SelectChildrenProps) => react_jsx_runtime.JSX.Element;
1359
+
1360
+ declare const ToggleButton: FC<ToggleButtonProps & {
1361
+ textView?: boolean;
1362
+ }>;
1363
+
1364
+ interface ToggleButtonGroupProps extends ToggleButtonGroupProps$1 {
1365
+ textView?: boolean;
1366
+ flexDirection?: 'row' | 'col';
1367
+ onChange: (event: MouseEvent<HTMLElement>, value: any) => void;
1368
+ value: any;
1369
+ }
1370
+ declare const ToggleButtonGroup: FC<ToggleButtonGroupProps & PropsWithChildren>;
1371
+
1372
+ interface ToggleButtonsMultipleProps$1 extends ToggleButtonGroupProps$1 {
1373
+ values: {
1374
+ value: string | number[];
1375
+ title: string;
1376
+ }[];
1377
+ textView?: boolean;
1378
+ collapseOnClick?: boolean;
1379
+ collapseParent?: () => void;
1380
+ label?: string;
1381
+ }
1382
+ declare const ToggleButtonsMultiple: FC<ToggleButtonsMultipleProps$1 & UseControllerProps<any>>;
1383
+
1384
+ type Values = {
1385
+ value: string | number[];
1386
+ title: string;
1387
+ }[];
1388
+ interface ToggleButtonsMultipleProps {
1389
+ values: Values;
1390
+ textView?: boolean;
1391
+ collapseOnClick?: boolean;
1392
+ collapseParent?: () => void;
1393
+ label?: string;
1394
+ flexDirection?: 'row' | 'col';
1395
+ fixWidth?: boolean;
1396
+ arrayValueFormat?: boolean;
1397
+ name: any;
1398
+ onChange: (event: MouseEvent<HTMLElement>, value: any) => void;
1399
+ value?: any;
1400
+ exclusive?: boolean;
1401
+ }
1402
+ declare const ToggleButtonsWithLabel: FC<ToggleButtonsMultipleProps>;
1403
+
1404
+ declare const ScrollButton: () => react_jsx_runtime.JSX.Element;
1405
+
1406
+ interface ButtonBadgeProps {
1407
+ icon?: ReactNode;
1408
+ badgeCount?: number;
1409
+ label?: string;
1410
+ className?: string;
1411
+ }
1412
+ declare const ButtonBadge: FC<SelectChildrenProps & ButtonBadgeProps>;
1413
+
1414
+ interface ErrorMessageProps {
1415
+ errorMessage?: string;
1416
+ }
1417
+ declare const ErrorMessage: FC<ErrorMessageProps>;
1418
+
1419
+ declare const Input: FC<DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
1420
+
1421
+ interface SearchInputProps$1 {
1422
+ onClick?: (event: MouseEvent<HTMLDivElement>) => void;
1423
+ collapse?: boolean;
1424
+ defValue?: string;
1425
+ placeholder?: string;
1426
+ value: string;
1427
+ onChange: (value: string) => void;
1428
+ }
1429
+ declare const SearchInput: FC<SearchInputProps$1>;
1430
+
1431
+ declare const FormInput: FC<{
1432
+ name: string;
1433
+ } & DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
1434
+
1435
+ interface NumberInputProps {
1436
+ adornmentText?: string;
1437
+ transparentView?: boolean;
1438
+ containerClassName?: string;
1439
+ }
1440
+ declare const NumberInput: FC<NumberInputProps & DetailedHTMLProps<InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>>;
1441
+
1442
+ interface SearchInputProps {
1443
+ onClick?: (event: MouseEvent<HTMLDivElement>) => void;
1444
+ collapse?: boolean;
1445
+ chips?: {
1446
+ slug: string;
1447
+ label: string;
1448
+ }[];
1449
+ placeholder?: string;
1450
+ value: string;
1451
+ onChange: (value: string) => void;
1452
+ onChipDelete?: (value: string) => void;
1453
+ startAdornment?: ReactNode;
1454
+ withoutIcon?: boolean;
1455
+ transparentView?: boolean;
1456
+ }
1457
+ declare const SearchPlaceInput: FC<SearchInputProps>;
1458
+
1459
+ interface PhoneInputProps {
1460
+ defaultCountry?: CountryIso2;
1461
+ value: string;
1462
+ onChange: (value: string) => void;
1463
+ placeholder?: string;
1464
+ }
1465
+ declare const PhoneInput: FC<PhoneInputProps>;
1466
+
1467
+ declare const TextAreaInput: FC<DetailedHTMLProps<TextareaHTMLAttributes<HTMLTextAreaElement>, HTMLTextAreaElement>>;
1468
+
1469
+ declare const StyledAccordion: FC<AccordionProps & {
1470
+ isFirst: boolean;
1471
+ }>;
1472
+ declare const StyledAccordionSummary: FC;
1473
+ declare const StyledAccordionDetails: FC;
1474
+
1475
+ declare const Paginator: (props: any) => react_jsx_runtime.JSX.Element | null;
1476
+
1477
+ declare const PaginationItem: FC<PaginationItemOwnProps>;
1478
+
1479
+ interface IPaginatorSimpleProps {
1480
+ total?: number;
1481
+ }
1482
+ declare function PaginatorSimple({ total }: IPaginatorSimpleProps): react_jsx_runtime.JSX.Element;
1483
+
1484
+ interface HProps extends PropsWithChildren {
1485
+ className?: string;
1486
+ smallerXs?: boolean;
1487
+ leftXs?: boolean;
1488
+ bold?: boolean;
1489
+ uppercase?: boolean;
1490
+ catalog?: boolean;
1491
+ }
1492
+
1493
+ declare const H1: FC<HProps>;
1494
+
1495
+ declare const H2: FC<HProps>;
1496
+
1497
+ declare const H3: FC<HProps>;
1498
+
1499
+ declare const H4: FC<HProps>;
1500
+
1501
+ declare const H5: FC<HProps>;
1502
+
1503
+ declare const H6: FC<HProps>;
1504
+
1505
+ interface FancyBoxProps {
1506
+ options?: Partial<OptionsType>;
1507
+ delegate?: string;
1508
+ }
1509
+ declare const FancyBox: FC<PropsWithChildren<FancyBoxProps>>;
1510
+
1511
+ interface ISliderDefault {
1512
+ children: ReactNode;
1513
+ slides?: number;
1514
+ spacing?: number;
1515
+ title?: string;
1516
+ linkComponent?: ReactNode;
1517
+ options?: KeenSliderOptions;
1518
+ dots?: boolean;
1519
+ preLoaded?: number;
1520
+ }
1521
+ declare function SliderDefault({ children, slides, spacing, title, linkComponent, options, dots, preLoaded, }: ISliderDefault): react_jsx_runtime.JSX.Element;
1522
+
1523
+ interface SingleSliderProps {
1524
+ singleView?: boolean;
1525
+ dots?: boolean;
1526
+ }
1527
+ declare const SingleSlider: FC<PropsWithChildren & SingleSliderProps>;
1528
+
1529
+ interface CasesSliderProps {
1530
+ cases: {
1531
+ imageUrl?: string;
1532
+ text1?: string;
1533
+ text2?: string;
1534
+ }[];
1535
+ }
1536
+ declare const CasesSlider: FC<CasesSliderProps>;
1537
+
1538
+ interface BreadCrumbsProps {
1539
+ breadCrumbsList: Array<BreadCrumbsItem | undefined | null>;
1540
+ }
1541
+ declare const BreadCrumbs: FC<BreadCrumbsProps>;
1542
+
1543
+ interface TeamPersonCardProps {
1544
+ image_url?: string | null;
1545
+ name?: string;
1546
+ position?: string;
1547
+ text?: string;
1548
+ }
1549
+ declare const TeamPersonCard: FC<TeamPersonCardProps>;
1550
+
1551
+ interface IArea {
1552
+ imageUrl?: string;
1553
+ title?: string;
1554
+ price?: string;
1555
+ whiteBottom?: boolean;
1556
+ }
1557
+ interface AreaCardProps extends IArea {
1558
+ className?: string;
1559
+ }
1560
+ declare const AreaCard: FC<AreaCardProps>;
1561
+
1562
+ interface IRealtorCard {
1563
+ realtor?: IWorker$2;
1564
+ site: Site;
1565
+ actionComponent?: ReactNode;
1566
+ }
1567
+ declare const RealtorCard: FC<IRealtorCard>;
1568
+
1569
+ interface CategoryCardProps {
1570
+ image_url: string;
1571
+ title: string;
1572
+ link: string;
1573
+ }
1574
+ declare function CategoryCard({ link, title, image_url, }: CategoryCardProps): react_jsx_runtime.JSX.Element;
1575
+
1576
+ interface DetailsProps {
1577
+ studio?: boolean | null;
1578
+ rooms?: string | null;
1579
+ bedrooms?: string | null;
1580
+ bathrooms?: string | number | null;
1581
+ stars?: string | null;
1582
+ areaTotal?: string | null;
1583
+ areaLand?: string | null;
1584
+ floor?: string | null;
1585
+ totalFloors?: string | null;
1586
+ realtyType?: {
1587
+ machineName?: string | null;
1588
+ value?: string | null;
1589
+ };
1590
+ houseTypes?: Array<string | undefined | null> | null;
1591
+ }
1592
+ interface PropertyDetailsProps {
1593
+ details: DetailsProps;
1594
+ site: Site;
1595
+ }
1596
+ declare const RealtyCardProperty: FC<PropertyDetailsProps>;
1597
+
1598
+ interface RealtyCardProps {
1599
+ href: string;
1600
+ view?: 'vertical' | 'horizontal';
1601
+ tags?: Array<string | undefined | null>;
1602
+ details: DetailsProps;
1603
+ images?: Array<string | null>;
1604
+ address?: string;
1605
+ addressWithIcon?: boolean;
1606
+ metro?: string[];
1607
+ className?: string;
1608
+ title?: string;
1609
+ subTitle?: string;
1610
+ imageAlt?: string;
1611
+ slug?: string;
1612
+ realtyForRent?: boolean;
1613
+ newRealty?: {
1614
+ priceFrom?: string;
1615
+ developer?: string;
1616
+ };
1617
+ publisher?: {
1618
+ image: string;
1619
+ name: string;
1620
+ };
1621
+ site?: Site;
1622
+ imagePlaceholders?: string[];
1623
+ }
1624
+ declare const RealtyCard: FC<RealtyCardProps>;
1625
+
1626
+ interface FeedbackCardProps {
1627
+ imageUrl: string;
1628
+ userName: string;
1629
+ feedbackDate: string;
1630
+ rating: number;
1631
+ feedbackText: string;
1632
+ }
1633
+ declare const FeedbackCard: FC<FeedbackCardProps>;
1634
+
1635
+ interface VacancyCardProps {
1636
+ content?: ReactNode;
1637
+ position?: string;
1638
+ title?: ReactElement;
1639
+ className?: string;
1640
+ }
1641
+ declare const VacancyCard: FC<VacancyCardProps & PropsWithChildren>;
1642
+
1643
+ interface DeveloperCardProps {
1644
+ className?: string;
1645
+ img?: string;
1646
+ title?: string;
1647
+ }
1648
+ declare const DeveloperCard: FC<DeveloperCardProps>;
1649
+
1650
+ declare const Dialog: _emotion_styled.StyledComponent<_mui_material.DialogProps & _mui_system.MUIStyledCommonProps<_mui_material.Theme>, {}, {}>;
1651
+
1652
+ export { AboutCompanyMain, AboutUsFirstBlock, StyledAccordion as Accordion, StyledAccordionDetails as AccordionDetails, StyledAccordionSummary as AccordionSummary, AmenitiesBlock, AnyLevelBlock, AnyQuestionsBlock, AreaCard, ArticleCard, ArticleContent, ArticlesBlock, ArticlesFull, Badge, BannerBlock, BannerBlock2, BannerReferralProgram, BecomePartner, BenefitsBlock, BenefitsVacanciesBlock, BlockAboutCareer, BlockContacts, BlockImages, BlockOurTeam, BlockOurTeamGrid, BreadCrumbs, Button, ButtonBadge, ButtonDark, CallConsult, CallMeBlock, CardsCatalog, CasesBlock, CasesSlider, CatalogCategoriesBlock, CatalogContainer, CatalogNewProjects, CatalogViewSwitch, CategoryCard, Checkbox, Chip, ClientTransferProcess, ContactDubaiBlock, ContactUsBlock, DeveloperBanner, DeveloperCard, DeveloperTwoBlocks, Dialog, ErrorMessage, ExpertiseBlock, FAQ, FancyBox, FeedbackCard, FloorPlansBlock, Footer, Footer2, FormBlock, FormInput, FullScreenImage, Gallery, GalleryBlock, H1, H2, H3, H4, H5, H6, Header, _default as HeaderContactButton, HeaderMob, IconButton, ImageAndTextBlock, Input, JoinTeamBlock, type LayoutStore, LegalSupport, LinkIconBorder, LinkOut, List, ListItem, type LocaleSlug, LocaleSwitch, LocaleSwitchToggle, LogoBlock, LogoBlockWhite, MODAL_COMPONENT, MODAL_COMPONENTS, MODAL_TITLES, Main, MainContainer, type Modal, NewProjectCard, NumberInput, ObjectInfoBlock, ObjectProperties, ObjectPropertyChip, Offices, OfficesBlock, OtherVacancies, OurAdvantages, OurServices, PageContainer, Paginator, PaginationItem as PaginatorItem, PaginatorSimple, PaymentPlanBlock, PhoneInput, PopularAreas, Portfolios, ProjectsSlider, RealtorCard, RealtyAddress, RealtyCard, RealtyCardProperty, RealtyDescription, RealtyDetails, RealtyPrice, RealtyTitle, ReferralProgramFirstBlock, ScrollButton, SearchInput, SearchPlaceInput, Select, ServicesFull, ServicesTexts, SimpleSelect, SingleSlider, SiteSwitch, SliderContainer, SliderDefault, SocialBlock, SocialBlockMain, ToggleSort as SortToggle, SubmitSelectButton, Switch, TeamPersonCard, TeamWorkerBlock, TermList, TextAreaInput, TextBlock, TextImageTileBlock, ThanksBlock, ToggleButton, ToggleButtonGroup, ToggleButtonsMultiple, ToggleButtonsWithLabel, TrustUs, TwoTextColumn as TwoTextColumnBlock, VacancyBoxInfo, VacancyCard, VacancyContainer, VacancyContent, VacancyInfoItems, WeOffer, WeTakeFull, WhatIsYour, WhyShouldWork, WhyWe, createLocaleSlugSlice, createModalSlice, hrefSlugPrefix, useLayoutStore, useLocaleSlugStore, useWindowSize };