-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathTypes.tsx
More file actions
1819 lines (1589 loc) · 189 KB
/
Types.tsx
File metadata and controls
1819 lines (1589 loc) · 189 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*************************************************************
THIS FILE WAS AUTOMATICALLY GENERATED, DO NOT MODIFY MANUALLY
SOURCE WINMDS USED:
- %USERPROFILE%\.nuget\packages\microsoft.ui.xaml\2.8.0\lib\uap10.0\Microsoft.UI.Xaml.winmd
**************************************************************/
import type {
// Controls
NativeContentControlProps,
NativeAppBarProps,
NativeButtonProps,
NativeAppBarButtonProps,
NativeAppBarElementContainerProps,
NativeAppBarSeparatorProps,
NativeToggleButtonProps,
NativeAppBarToggleButtonProps,
NativeItemsControlProps,
NativeAutoSuggestBoxProps,
NativeBitmapIconProps,
NativeBorderProps,
NativeCalendarDatePickerProps,
NativeCalendarViewProps,
NativeCalendarViewDayItemProps,
NativeCanvasProps,
NativeCaptureElementProps,
NativeCheckBoxProps,
NativeColorPickerProps,
NativeComboBoxProps,
NativeComboBoxItemProps,
NativeCommandBarProps,
NativeCommandBarFlyoutProps,
NativeCommandBarOverflowPresenterProps,
NativeContentDialogProps,
NativeContentPresenterProps,
NativeDatePickerProps,
NativeDatePickerFlyoutProps,
NativeDropDownButtonProps,
NativeFlipViewProps,
NativeFlipViewItemProps,
NativeFlyoutProps,
NativeFlyoutPresenterProps,
NativeFontIconProps,
NativeFrameProps,
NativeGridProps,
NativeGridViewProps,
NativeGridViewHeaderItemProps,
NativeGridViewItemProps,
NativeGroupItemProps,
NativeHandwritingViewProps,
NativeHubProps,
NativeHubSectionProps,
NativeHyperlinkButtonProps,
NativeIconSourceElementProps,
NativeImageProps,
NativeInkCanvasProps,
NativeInkToolbarProps,
NativeRadioButtonProps,
NativeInkToolbarBallpointPenButtonProps,
NativeInkToolbarCustomPenButtonProps,
NativeInkToolbarCustomToggleButtonProps,
NativeInkToolbarCustomToolButtonProps,
NativeInkToolbarEraserButtonProps,
NativeInkToolbarFlyoutItemProps,
NativeInkToolbarHighlighterButtonProps,
NativeInkToolbarPenConfigurationControlProps,
NativeInkToolbarPencilButtonProps,
NativeInkToolbarRulerButtonProps,
NativeInkToolbarStencilButtonProps,
NativeItemsPresenterProps,
NativeItemsStackPanelProps,
NativeItemsWrapGridProps,
NativeListBoxProps,
NativeListBoxItemProps,
NativeListPickerFlyoutProps,
NativeListViewProps,
NativeListViewHeaderItemProps,
NativeListViewItemProps,
NativeMapControlProps,
NativeMediaElementProps,
NativeMediaPlayerElementProps,
NativeMediaPlayerPresenterProps,
NativeMediaTransportControlsProps,
NativeMenuBarProps,
NativeMenuBarItemProps,
NativeMenuFlyoutProps,
NativeMenuBarItemFlyoutProps,
NativeMenuFlyoutItemProps,
NativeMenuFlyoutPresenterProps,
NativeMenuFlyoutSeparatorProps,
NativeMenuFlyoutSubItemProps,
NativeNavigationViewProps,
NativeNavigationViewItemProps,
NativeNavigationViewItemHeaderProps,
NativeNavigationViewItemSeparatorProps,
NativeNavigationViewListProps,
NativeUserControlProps,
NativePageProps,
NativeParallaxViewProps,
NativePasswordBoxProps,
NativePathIconProps,
NativePersonPictureProps,
NativePickerFlyoutProps,
NativePivotProps,
NativePivotItemProps,
NativeCalendarPanelProps,
NativeCarouselPanelProps,
NativeSliderProps,
NativeColorPickerSliderProps,
NativeColorSpectrumProps,
NativeCommandBarFlyoutCommandBarProps,
NativeGridViewItemPresenterProps,
NativeListViewItemPresenterProps,
NativeNavigationViewItemPresenterProps,
NativePivotHeaderItemProps,
NativePivotHeaderPanelProps,
NativePivotPanelProps,
NativePopupProps,
NativeRepeatButtonProps,
NativeScrollBarProps,
NativeThumbProps,
NativeTickBarProps,
NativeProgressBarProps,
NativeProgressRingProps,
NativeRatingControlProps,
NativeRefreshContainerProps,
NativeRefreshVisualizerProps,
NativeRelativePanelProps,
NativeRichEditBoxProps,
NativeRichTextBlockProps,
NativeRichTextBlockOverflowProps,
NativeScrollContentPresenterProps,
NativeScrollViewerProps,
NativeSearchBoxProps,
NativeSemanticZoomProps,
NativeSettingsFlyoutProps,
NativeSplitButtonProps,
NativeSplitViewProps,
NativeStackPanelProps,
NativeSwapChainBackgroundPanelProps,
NativeSwapChainPanelProps,
NativeSwipeControlProps,
NativeSymbolIconProps,
NativeTextBlockProps,
NativeTextBoxProps,
NativeTextCommandBarFlyoutProps,
NativeTimePickerProps,
NativeTimePickerFlyoutProps,
NativeToggleMenuFlyoutItemProps,
NativeToggleSplitButtonProps,
NativeToggleSwitchProps,
NativeToolTipProps,
NativeTreeViewProps,
NativeTreeViewItemProps,
NativeTreeViewListProps,
NativeTwoPaneViewProps,
NativeVariableSizedWrapGridProps,
NativeViewboxProps,
NativeVirtualizingStackPanelProps,
NativeWebViewProps,
NativeWrapGridProps,
NativeSpanProps,
NativeBoldProps,
NativeContentLinkProps,
NativeGlyphsProps,
NativeHyperlinkProps,
NativeInlineUIContainerProps,
NativeItalicProps,
NativeLineBreakProps,
NativeParagraphProps,
NativeRunProps,
NativeUnderlineProps,
NativeKeyboardAcceleratorProps,
NativeEllipseProps,
NativeLineProps,
NativePathProps,
NativePolygonProps,
NativePolylineProps,
NativeRectangleProps,
// EventArgs
NativeSelectionChangedEventArgs,
NativeIVectorChangedEventArgs,
NativeDragEventArgs,
NativeDoubleTappedRoutedEventArgs,
NativeRoutedEventArgs,
NativeHoldingRoutedEventArgs,
NativeManipulationCompletedRoutedEventArgs,
NativeManipulationDeltaRoutedEventArgs,
NativeManipulationInertiaStartingRoutedEventArgs,
NativeManipulationStartedRoutedEventArgs,
NativeManipulationStartingRoutedEventArgs,
NativePointerRoutedEventArgs,
NativeRightTappedRoutedEventArgs,
NativeTappedRoutedEventArgs,
NativeDragStartingEventArgs,
NativeDropCompletedEventArgs,
NativeAccessKeyDisplayDismissedEventArgs,
NativeAccessKeyDisplayRequestedEventArgs,
NativeAccessKeyInvokedEventArgs,
NativeContextRequestedEventArgs,
NativeGettingFocusEventArgs,
NativeLosingFocusEventArgs,
NativeNoFocusCandidateFoundEventArgs,
NativeCharacterReceivedRoutedEventArgs,
NativeKeyRoutedEventArgs,
NativeProcessKeyboardAcceleratorEventArgs,
NativeBringIntoViewRequestedEventArgs,
NativeSizeChangedEventArgs,
NativeDataContextChangedEventArgs,
NativeEffectiveViewportChangedEventArgs,
NativeDependencyPropertyChangedEventArgs,
NativeFocusDisengagedEventArgs,
NativeFocusEngagedEventArgs,
NativeAutoSuggestBoxSuggestionChosenEventArgs,
NativeAutoSuggestBoxTextChangedEventArgs,
NativeAutoSuggestBoxQuerySubmittedEventArgs,
NativeCalendarViewDayItemChangingEventArgs,
NativeCalendarDatePickerDateChangedEventArgs,
NativeCalendarViewSelectedDatesChangedEventArgs,
NativeColorChangedEventArgs,
NativeComboBoxTextSubmittedEventArgs,
NativeDynamicOverflowItemsChangingEventArgs,
NativeFlyoutBaseClosingEventArgs,
NativeContentDialogClosedEventArgs,
NativeContentDialogClosingEventArgs,
NativeContentDialogOpenedEventArgs,
NativeContentDialogButtonClickEventArgs,
NativeDatePickerValueChangedEventArgs,
NativeDatePickerSelectedValueChangedEventArgs,
NativeDatePickedEventArgs,
NativeNavigationEventArgs,
NativeNavigatingCancelEventArgs,
NativeNavigationFailedEventArgs,
NativeDragItemsStartingEventArgs,
NativeItemClickEventArgs,
NativeContainerContentChangingEventArgs,
NativeChoosingGroupHeaderContainerEventArgs,
NativeChoosingItemContainerEventArgs,
NativeDragItemsCompletedEventArgs,
NativeHandwritingPanelClosedEventArgs,
NativeHandwritingPanelOpenedEventArgs,
NativeHubSectionHeaderClickEventArgs,
NativeSectionsInViewChangedEventArgs,
NativeExceptionRoutedEventArgs,
NativeInkToolbarIsStencilButtonCheckedChangedEventArgs,
NativeItemsPickedEventArgs,
NativeMapInputEventArgs,
NativeMapActualCameraChangedEventArgs,
NativeMapActualCameraChangingEventArgs,
NativeMapCustomExperienceChangedEventArgs,
NativeMapElementClickEventArgs,
NativeMapElementPointerEnteredEventArgs,
NativeMapElementPointerExitedEventArgs,
NativeMapTargetCameraChangedEventArgs,
NativeMapRightTappedEventArgs,
NativeMapContextRequestedEventArgs,
NativeTimelineMarkerRoutedEventArgs,
NativeRateChangedRoutedEventArgs,
NativePartialMediaFailureDetectedEventArgs,
NativeMediaTransportControlsThumbnailRequestedEventArgs,
NativeNavigationViewDisplayModeChangedEventArgs,
NativeNavigationViewItemInvokedEventArgs,
NativeNavigationViewSelectionChangedEventArgs,
NativeNavigationViewBackRequestedEventArgs,
NativeNavigationViewPaneClosingEventArgs,
NativeContextMenuEventArgs,
NativeTextControlPasteEventArgs,
NativePasswordBoxPasswordChangingEventArgs,
NativePickerConfirmedEventArgs,
NativePivotItemEventArgs,
NativeRangeBaseValueChangedEventArgs,
NativeScrollEventArgs,
NativeDragCompletedEventArgs,
NativeDragDeltaEventArgs,
NativeDragStartedEventArgs,
NativeRefreshRequestedEventArgs,
NativeRefreshStateChangedEventArgs,
NativeCandidateWindowBoundsChangedEventArgs,
NativeRichEditBoxTextChangingEventArgs,
NativeTextCompositionChangedEventArgs,
NativeTextCompositionEndedEventArgs,
NativeTextCompositionStartedEventArgs,
NativeTextControlCopyingToClipboardEventArgs,
NativeTextControlCuttingToClipboardEventArgs,
NativeContentLinkChangedEventArgs,
NativeContentLinkInvokedEventArgs,
NativeRichEditBoxSelectionChangingEventArgs,
NativeIsTextTrimmedChangedEventArgs,
NativeScrollViewerViewChangedEventArgs,
NativeScrollViewerViewChangingEventArgs,
NativeAnchorRequestedEventArgs,
NativeSearchBoxQueryChangedEventArgs,
NativeSearchBoxQuerySubmittedEventArgs,
NativeSearchBoxResultSuggestionChosenEventArgs,
NativeSearchBoxSuggestionsRequestedEventArgs,
NativeSemanticZoomViewChangedEventArgs,
NativeBackClickEventArgs,
NativeSplitButtonClickEventArgs,
NativeSplitViewPaneClosingEventArgs,
NativeTextChangedEventArgs,
NativeTextBoxTextChangingEventArgs,
NativeTextBoxBeforeTextChangingEventArgs,
NativeTextBoxSelectionChangingEventArgs,
NativeTimePickerValueChangedEventArgs,
NativeTimePickerSelectedValueChangedEventArgs,
NativeTimePickedEventArgs,
NativeToggleSplitButtonIsCheckedChangedEventArgs,
NativeTreeViewCollapsedEventArgs,
NativeTreeViewExpandingEventArgs,
NativeTreeViewItemInvokedEventArgs,
NativeTreeViewDragItemsCompletedEventArgs,
NativeTreeViewDragItemsStartingEventArgs,
NativeCleanUpVirtualizedItemEventArgs,
NativeWebViewNavigationFailedEventArgs,
NativeNotifyEventArgs,
NativeWebViewContentLoadingEventArgs,
NativeWebViewDOMContentLoadedEventArgs,
NativeWebViewNavigationCompletedEventArgs,
NativeWebViewNavigationStartingEventArgs,
NativeWebViewLongRunningScriptDetectedEventArgs,
NativeWebViewUnviewableContentIdentifiedEventArgs,
NativeWebViewNewWindowRequestedEventArgs,
NativeWebViewPermissionRequestedEventArgs,
NativeWebViewUnsupportedUriSchemeIdentifiedEventArgs,
NativeWebViewSeparateProcessLostEventArgs,
NativeWebViewWebResourceRequestedEventArgs,
NativeHyperlinkClickEventArgs,
NativeKeyboardAcceleratorInvokedEventArgs,
} from './Props';
import type { NativeWinUI } from './Props';
import type { NativeWebView2 } from './Props';
import React, { ForwardRefExoticComponent, RefAttributes } from 'react';
import { NativeXamlControl } from './NativeXamlControl';
import { findNodeHandle, NativeMethods, UIManager } from 'react-native';
import type { Point, Color } from './Props';
export type { Point, Color };
export namespace WinUI {
export type AnimatedIconProps = Omit<NativeWinUI.NativeAnimatedIconProps, 'type'>;
export type AnimatedIconRef = React.Component<NativeWinUI.NativeAnimatedIconProps> & Readonly<NativeMethods>;
const _AnimatedIcon : (ForwardRefExoticComponent<React.PropsWithChildren<AnimatedIconProps> & RefAttributes<AnimatedIconRef>>) = React.forwardRef((props: React.PropsWithChildren<AnimatedIconProps>, ref: React.ForwardedRef<AnimatedIconRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.AnimatedIcon' ref={ref} />);
export const AnimatedIcon = (_AnimatedIcon as (ForwardRefExoticComponent<React.PropsWithChildren<AnimatedIconProps> & RefAttributes<AnimatedIconRef>>));
}
export namespace WinUI {
export type AnimatedVisualPlayerProps = Omit<NativeWinUI.NativeAnimatedVisualPlayerProps, 'type'>;
export type AnimatedVisualPlayerRef = React.Component<NativeWinUI.NativeAnimatedVisualPlayerProps> & Readonly<NativeMethods>;
const _AnimatedVisualPlayer : (ForwardRefExoticComponent<React.PropsWithChildren<AnimatedVisualPlayerProps> & RefAttributes<AnimatedVisualPlayerRef>>) = React.forwardRef((props: React.PropsWithChildren<AnimatedVisualPlayerProps>, ref: React.ForwardedRef<AnimatedVisualPlayerRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.AnimatedVisualPlayer' ref={ref} />);
export const AnimatedVisualPlayer = (_AnimatedVisualPlayer as (ForwardRefExoticComponent<React.PropsWithChildren<AnimatedVisualPlayerProps> & RefAttributes<AnimatedVisualPlayerRef>>));
}
export namespace WinUI {
export type BreadcrumbBarProps = Omit<NativeWinUI.NativeBreadcrumbBarProps, 'type'>;
export type BreadcrumbBarRef = React.Component<NativeWinUI.NativeBreadcrumbBarProps> & Readonly<NativeMethods>;
const _BreadcrumbBar : (ForwardRefExoticComponent<React.PropsWithChildren<BreadcrumbBarProps> & RefAttributes<BreadcrumbBarRef>>) = React.forwardRef((props: React.PropsWithChildren<BreadcrumbBarProps>, ref: React.ForwardedRef<BreadcrumbBarRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.BreadcrumbBar' ref={ref} />);
export const BreadcrumbBar = (_BreadcrumbBar as (ForwardRefExoticComponent<React.PropsWithChildren<BreadcrumbBarProps> & RefAttributes<BreadcrumbBarRef>>));
}
export namespace WinUI {
export type BreadcrumbBarItemProps = Omit<NativeWinUI.NativeBreadcrumbBarItemProps, 'type'>;
export type BreadcrumbBarItemRef = React.Component<NativeWinUI.NativeBreadcrumbBarItemProps> & Readonly<NativeMethods>;
const _BreadcrumbBarItem : (ForwardRefExoticComponent<React.PropsWithChildren<BreadcrumbBarItemProps> & RefAttributes<BreadcrumbBarItemRef>>) = React.forwardRef((props: React.PropsWithChildren<BreadcrumbBarItemProps>, ref: React.ForwardedRef<BreadcrumbBarItemRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.BreadcrumbBarItem' ref={ref} />);
export const BreadcrumbBarItem = (_BreadcrumbBarItem as (ForwardRefExoticComponent<React.PropsWithChildren<BreadcrumbBarItemProps> & RefAttributes<BreadcrumbBarItemRef>>));
}
export namespace WinUI {
export type ColorPickerProps = Omit<NativeWinUI.NativeColorPickerProps, 'type'>;
export type ColorPickerRef = React.Component<NativeWinUI.NativeColorPickerProps> & Readonly<NativeMethods>;
const _ColorPicker : (ForwardRefExoticComponent<React.PropsWithChildren<ColorPickerProps> & RefAttributes<ColorPickerRef>>) = React.forwardRef((props: React.PropsWithChildren<ColorPickerProps>, ref: React.ForwardedRef<ColorPickerRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.ColorPicker' ref={ref} />);
export const ColorPicker = (_ColorPicker as (ForwardRefExoticComponent<React.PropsWithChildren<ColorPickerProps> & RefAttributes<ColorPickerRef>>));
}
export namespace WinUI {
export type CommandBarFlyoutProps = Omit<NativeWinUI.NativeCommandBarFlyoutProps, 'type'>;
export type CommandBarFlyoutRef = React.Component<NativeWinUI.NativeCommandBarFlyoutProps> & Readonly<NativeMethods>;
const _CommandBarFlyout : (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarFlyoutProps> & RefAttributes<CommandBarFlyoutRef>>) = React.forwardRef((props: React.PropsWithChildren<CommandBarFlyoutProps>, ref: React.ForwardedRef<CommandBarFlyoutRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.CommandBarFlyout' ref={ref} />);
export const CommandBarFlyout = (_CommandBarFlyout as (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarFlyoutProps> & RefAttributes<CommandBarFlyoutRef>>));
}
export namespace WinUI {
export type DropDownButtonProps = Omit<NativeWinUI.NativeDropDownButtonProps, 'type'>;
export type DropDownButtonRef = React.Component<NativeWinUI.NativeDropDownButtonProps> & Readonly<NativeMethods>;
const _DropDownButton : (ForwardRefExoticComponent<React.PropsWithChildren<DropDownButtonProps> & RefAttributes<DropDownButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<DropDownButtonProps>, ref: React.ForwardedRef<DropDownButtonRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.DropDownButton' ref={ref} />);
export const DropDownButton = (_DropDownButton as (ForwardRefExoticComponent<React.PropsWithChildren<DropDownButtonProps> & RefAttributes<DropDownButtonRef>>));
}
export namespace WinUI {
export type ExpanderProps = Omit<NativeWinUI.NativeExpanderProps, 'type'>;
export type ExpanderRef = React.Component<NativeWinUI.NativeExpanderProps> & Readonly<NativeMethods>;
const _Expander : (ForwardRefExoticComponent<React.PropsWithChildren<ExpanderProps> & RefAttributes<ExpanderRef>>) = React.forwardRef((props: React.PropsWithChildren<ExpanderProps>, ref: React.ForwardedRef<ExpanderRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.Expander' ref={ref} />);
export const Expander = (_Expander as (ForwardRefExoticComponent<React.PropsWithChildren<ExpanderProps> & RefAttributes<ExpanderRef>>));
}
export namespace WinUI {
export type ImageIconProps = Omit<NativeWinUI.NativeImageIconProps, 'type'>;
export type ImageIconRef = React.Component<NativeWinUI.NativeImageIconProps> & Readonly<NativeMethods>;
const _ImageIcon : (ForwardRefExoticComponent<React.PropsWithChildren<ImageIconProps> & RefAttributes<ImageIconRef>>) = React.forwardRef((props: React.PropsWithChildren<ImageIconProps>, ref: React.ForwardedRef<ImageIconRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.ImageIcon' ref={ref} />);
export const ImageIcon = (_ImageIcon as (ForwardRefExoticComponent<React.PropsWithChildren<ImageIconProps> & RefAttributes<ImageIconRef>>));
}
export namespace WinUI {
export type InfoBadgeProps = Omit<NativeWinUI.NativeInfoBadgeProps, 'type'>;
export type InfoBadgeRef = React.Component<NativeWinUI.NativeInfoBadgeProps> & Readonly<NativeMethods>;
const _InfoBadge : (ForwardRefExoticComponent<React.PropsWithChildren<InfoBadgeProps> & RefAttributes<InfoBadgeRef>>) = React.forwardRef((props: React.PropsWithChildren<InfoBadgeProps>, ref: React.ForwardedRef<InfoBadgeRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.InfoBadge' ref={ref} />);
export const InfoBadge = (_InfoBadge as (ForwardRefExoticComponent<React.PropsWithChildren<InfoBadgeProps> & RefAttributes<InfoBadgeRef>>));
}
export namespace WinUI {
export type InfoBarProps = Omit<NativeWinUI.NativeInfoBarProps, 'type'>;
export type InfoBarRef = React.Component<NativeWinUI.NativeInfoBarProps> & Readonly<NativeMethods>;
const _InfoBar : (ForwardRefExoticComponent<React.PropsWithChildren<InfoBarProps> & RefAttributes<InfoBarRef>>) = React.forwardRef((props: React.PropsWithChildren<InfoBarProps>, ref: React.ForwardedRef<InfoBarRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.InfoBar' ref={ref} />);
export const InfoBar = (_InfoBar as (ForwardRefExoticComponent<React.PropsWithChildren<InfoBarProps> & RefAttributes<InfoBarRef>>));
}
export namespace WinUI {
export type ItemsRepeaterProps = Omit<NativeWinUI.NativeItemsRepeaterProps, 'type'>;
export type ItemsRepeaterRef = React.Component<NativeWinUI.NativeItemsRepeaterProps> & Readonly<NativeMethods>;
const _ItemsRepeater : (ForwardRefExoticComponent<React.PropsWithChildren<ItemsRepeaterProps> & RefAttributes<ItemsRepeaterRef>>) = React.forwardRef((props: React.PropsWithChildren<ItemsRepeaterProps>, ref: React.ForwardedRef<ItemsRepeaterRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.ItemsRepeater' ref={ref} />);
export const ItemsRepeater = (_ItemsRepeater as (ForwardRefExoticComponent<React.PropsWithChildren<ItemsRepeaterProps> & RefAttributes<ItemsRepeaterRef>>));
}
export namespace WinUI {
export type ItemsRepeaterScrollHostProps = Omit<NativeWinUI.NativeItemsRepeaterScrollHostProps, 'type'>;
export type ItemsRepeaterScrollHostRef = React.Component<NativeWinUI.NativeItemsRepeaterScrollHostProps> & Readonly<NativeMethods>;
const _ItemsRepeaterScrollHost : (ForwardRefExoticComponent<React.PropsWithChildren<ItemsRepeaterScrollHostProps> & RefAttributes<ItemsRepeaterScrollHostRef>>) = React.forwardRef((props: React.PropsWithChildren<ItemsRepeaterScrollHostProps>, ref: React.ForwardedRef<ItemsRepeaterScrollHostRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.ItemsRepeaterScrollHost' ref={ref} />);
export const ItemsRepeaterScrollHost = (_ItemsRepeaterScrollHost as (ForwardRefExoticComponent<React.PropsWithChildren<ItemsRepeaterScrollHostProps> & RefAttributes<ItemsRepeaterScrollHostRef>>));
}
export namespace WinUI {
export type MenuBarProps = Omit<NativeWinUI.NativeMenuBarProps, 'type'>;
export type MenuBarRef = React.Component<NativeWinUI.NativeMenuBarProps> & Readonly<NativeMethods>;
const _MenuBar : (ForwardRefExoticComponent<React.PropsWithChildren<MenuBarProps> & RefAttributes<MenuBarRef>>) = React.forwardRef((props: React.PropsWithChildren<MenuBarProps>, ref: React.ForwardedRef<MenuBarRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.MenuBar' ref={ref} />);
export const MenuBar = (_MenuBar as (ForwardRefExoticComponent<React.PropsWithChildren<MenuBarProps> & RefAttributes<MenuBarRef>>));
}
export namespace WinUI {
export type MenuBarItemProps = Omit<NativeWinUI.NativeMenuBarItemProps, 'type'>;
export type MenuBarItemRef = React.Component<NativeWinUI.NativeMenuBarItemProps> & Readonly<NativeMethods>;
const _MenuBarItem : (ForwardRefExoticComponent<React.PropsWithChildren<MenuBarItemProps> & RefAttributes<MenuBarItemRef>>) = React.forwardRef((props: React.PropsWithChildren<MenuBarItemProps>, ref: React.ForwardedRef<MenuBarItemRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.MenuBarItem' ref={ref} />);
export const MenuBarItem = (_MenuBarItem as (ForwardRefExoticComponent<React.PropsWithChildren<MenuBarItemProps> & RefAttributes<MenuBarItemRef>>));
}
export namespace WinUI {
export type MenuBarItemFlyoutProps = Omit<NativeWinUI.NativeMenuBarItemFlyoutProps, 'type'>;
export type MenuBarItemFlyoutRef = React.Component<NativeWinUI.NativeMenuBarItemFlyoutProps> & Readonly<NativeMethods>;
const _MenuBarItemFlyout : (ForwardRefExoticComponent<React.PropsWithChildren<MenuBarItemFlyoutProps> & RefAttributes<MenuBarItemFlyoutRef>>) = React.forwardRef((props: React.PropsWithChildren<MenuBarItemFlyoutProps>, ref: React.ForwardedRef<MenuBarItemFlyoutRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.MenuBarItemFlyout' ref={ref} />);
export const MenuBarItemFlyout = (_MenuBarItemFlyout as (ForwardRefExoticComponent<React.PropsWithChildren<MenuBarItemFlyoutProps> & RefAttributes<MenuBarItemFlyoutRef>>));
}
export namespace WinUI {
export type NavigationViewProps = Omit<NativeWinUI.NativeNavigationViewProps, 'type'>;
export type NavigationViewRef = React.Component<NativeWinUI.NativeNavigationViewProps> & Readonly<NativeMethods>;
const _NavigationView : (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewProps> & RefAttributes<NavigationViewRef>>) = React.forwardRef((props: React.PropsWithChildren<NavigationViewProps>, ref: React.ForwardedRef<NavigationViewRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.NavigationView' ref={ref} />);
export const NavigationView = (_NavigationView as (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewProps> & RefAttributes<NavigationViewRef>>));
}
export namespace WinUI {
export type NavigationViewItemProps = Omit<NativeWinUI.NativeNavigationViewItemProps, 'type'>;
export type NavigationViewItemRef = React.Component<NativeWinUI.NativeNavigationViewItemProps> & Readonly<NativeMethods>;
const _NavigationViewItem : (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewItemProps> & RefAttributes<NavigationViewItemRef>>) = React.forwardRef((props: React.PropsWithChildren<NavigationViewItemProps>, ref: React.ForwardedRef<NavigationViewItemRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.NavigationViewItem' ref={ref} />);
export const NavigationViewItem = (_NavigationViewItem as (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewItemProps> & RefAttributes<NavigationViewItemRef>>));
}
export namespace WinUI {
export type NavigationViewItemHeaderProps = Omit<NativeWinUI.NativeNavigationViewItemHeaderProps, 'type'>;
export type NavigationViewItemHeaderRef = React.Component<NativeWinUI.NativeNavigationViewItemHeaderProps> & Readonly<NativeMethods>;
const _NavigationViewItemHeader : (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewItemHeaderProps> & RefAttributes<NavigationViewItemHeaderRef>>) = React.forwardRef((props: React.PropsWithChildren<NavigationViewItemHeaderProps>, ref: React.ForwardedRef<NavigationViewItemHeaderRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.NavigationViewItemHeader' ref={ref} />);
export const NavigationViewItemHeader = (_NavigationViewItemHeader as (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewItemHeaderProps> & RefAttributes<NavigationViewItemHeaderRef>>));
}
export namespace WinUI {
export type NavigationViewItemSeparatorProps = Omit<NativeWinUI.NativeNavigationViewItemSeparatorProps, 'type'>;
export type NavigationViewItemSeparatorRef = React.Component<NativeWinUI.NativeNavigationViewItemSeparatorProps> & Readonly<NativeMethods>;
const _NavigationViewItemSeparator : (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewItemSeparatorProps> & RefAttributes<NavigationViewItemSeparatorRef>>) = React.forwardRef((props: React.PropsWithChildren<NavigationViewItemSeparatorProps>, ref: React.ForwardedRef<NavigationViewItemSeparatorRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.NavigationViewItemSeparator' ref={ref} />);
export const NavigationViewItemSeparator = (_NavigationViewItemSeparator as (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewItemSeparatorProps> & RefAttributes<NavigationViewItemSeparatorRef>>));
}
export namespace WinUI {
export type NumberBoxProps = Omit<NativeWinUI.NativeNumberBoxProps, 'type'>;
export type NumberBoxRef = React.Component<NativeWinUI.NativeNumberBoxProps> & Readonly<NativeMethods>;
const _NumberBox : (ForwardRefExoticComponent<React.PropsWithChildren<NumberBoxProps> & RefAttributes<NumberBoxRef>>) = React.forwardRef((props: React.PropsWithChildren<NumberBoxProps>, ref: React.ForwardedRef<NumberBoxRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.NumberBox' ref={ref} />);
export const NumberBox = (_NumberBox as (ForwardRefExoticComponent<React.PropsWithChildren<NumberBoxProps> & RefAttributes<NumberBoxRef>>));
}
export namespace WinUI {
export type ParallaxViewProps = Omit<NativeWinUI.NativeParallaxViewProps, 'type'>;
export type ParallaxViewRef = React.Component<NativeWinUI.NativeParallaxViewProps> & Readonly<NativeMethods>;
const _ParallaxView : (ForwardRefExoticComponent<React.PropsWithChildren<ParallaxViewProps> & RefAttributes<ParallaxViewRef>>) = React.forwardRef((props: React.PropsWithChildren<ParallaxViewProps>, ref: React.ForwardedRef<ParallaxViewRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.ParallaxView' ref={ref} />);
export const ParallaxView = (_ParallaxView as (ForwardRefExoticComponent<React.PropsWithChildren<ParallaxViewProps> & RefAttributes<ParallaxViewRef>>));
}
export namespace WinUI {
export type PersonPictureProps = Omit<NativeWinUI.NativePersonPictureProps, 'type'>;
export type PersonPictureRef = React.Component<NativeWinUI.NativePersonPictureProps> & Readonly<NativeMethods>;
const _PersonPicture : (ForwardRefExoticComponent<React.PropsWithChildren<PersonPictureProps> & RefAttributes<PersonPictureRef>>) = React.forwardRef((props: React.PropsWithChildren<PersonPictureProps>, ref: React.ForwardedRef<PersonPictureRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.PersonPicture' ref={ref} />);
export const PersonPicture = (_PersonPicture as (ForwardRefExoticComponent<React.PropsWithChildren<PersonPictureProps> & RefAttributes<PersonPictureRef>>));
}
export namespace WinUI {
export type PipsPagerProps = Omit<NativeWinUI.NativePipsPagerProps, 'type'>;
export type PipsPagerRef = React.Component<NativeWinUI.NativePipsPagerProps> & Readonly<NativeMethods>;
const _PipsPager : (ForwardRefExoticComponent<React.PropsWithChildren<PipsPagerProps> & RefAttributes<PipsPagerRef>>) = React.forwardRef((props: React.PropsWithChildren<PipsPagerProps>, ref: React.ForwardedRef<PipsPagerRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.PipsPager' ref={ref} />);
export const PipsPager = (_PipsPager as (ForwardRefExoticComponent<React.PropsWithChildren<PipsPagerProps> & RefAttributes<PipsPagerRef>>));
}
export namespace WinUI {
export type ColorPickerSliderProps = Omit<NativeWinUI.NativeColorPickerSliderProps, 'type'>;
export type ColorPickerSliderRef = React.Component<NativeWinUI.NativeColorPickerSliderProps> & Readonly<NativeMethods>;
const _ColorPickerSlider : (ForwardRefExoticComponent<React.PropsWithChildren<ColorPickerSliderProps> & RefAttributes<ColorPickerSliderRef>>) = React.forwardRef((props: React.PropsWithChildren<ColorPickerSliderProps>, ref: React.ForwardedRef<ColorPickerSliderRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.Primitives.ColorPickerSlider' ref={ref} />);
export const ColorPickerSlider = (_ColorPickerSlider as (ForwardRefExoticComponent<React.PropsWithChildren<ColorPickerSliderProps> & RefAttributes<ColorPickerSliderRef>>));
}
export namespace WinUI {
export type ColorSpectrumProps = Omit<NativeWinUI.NativeColorSpectrumProps, 'type'>;
export type ColorSpectrumRef = React.Component<NativeWinUI.NativeColorSpectrumProps> & Readonly<NativeMethods>;
const _ColorSpectrum : (ForwardRefExoticComponent<React.PropsWithChildren<ColorSpectrumProps> & RefAttributes<ColorSpectrumRef>>) = React.forwardRef((props: React.PropsWithChildren<ColorSpectrumProps>, ref: React.ForwardedRef<ColorSpectrumRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.Primitives.ColorSpectrum' ref={ref} />);
export const ColorSpectrum = (_ColorSpectrum as (ForwardRefExoticComponent<React.PropsWithChildren<ColorSpectrumProps> & RefAttributes<ColorSpectrumRef>>));
}
export namespace WinUI {
export type CommandBarFlyoutCommandBarProps = Omit<NativeWinUI.NativeCommandBarFlyoutCommandBarProps, 'type'>;
export type CommandBarFlyoutCommandBarRef = React.Component<NativeWinUI.NativeCommandBarFlyoutCommandBarProps> & Readonly<NativeMethods>;
const _CommandBarFlyoutCommandBar : (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarFlyoutCommandBarProps> & RefAttributes<CommandBarFlyoutCommandBarRef>>) = React.forwardRef((props: React.PropsWithChildren<CommandBarFlyoutCommandBarProps>, ref: React.ForwardedRef<CommandBarFlyoutCommandBarRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.Primitives.CommandBarFlyoutCommandBar' ref={ref} />);
export const CommandBarFlyoutCommandBar = (_CommandBarFlyoutCommandBar as (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarFlyoutCommandBarProps> & RefAttributes<CommandBarFlyoutCommandBarRef>>));
}
export namespace WinUI {
export type InfoBarPanelProps = Omit<NativeWinUI.NativeInfoBarPanelProps, 'type'>;
export type InfoBarPanelRef = React.Component<NativeWinUI.NativeInfoBarPanelProps> & Readonly<NativeMethods>;
const _InfoBarPanel : (ForwardRefExoticComponent<React.PropsWithChildren<InfoBarPanelProps> & RefAttributes<InfoBarPanelRef>>) = React.forwardRef((props: React.PropsWithChildren<InfoBarPanelProps>, ref: React.ForwardedRef<InfoBarPanelRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.Primitives.InfoBarPanel' ref={ref} />);
export const InfoBarPanel = (_InfoBarPanel as (ForwardRefExoticComponent<React.PropsWithChildren<InfoBarPanelProps> & RefAttributes<InfoBarPanelRef>>));
}
export namespace WinUI {
export type MonochromaticOverlayPresenterProps = Omit<NativeWinUI.NativeMonochromaticOverlayPresenterProps, 'type'>;
export type MonochromaticOverlayPresenterRef = React.Component<NativeWinUI.NativeMonochromaticOverlayPresenterProps> & Readonly<NativeMethods>;
const _MonochromaticOverlayPresenter : (ForwardRefExoticComponent<React.PropsWithChildren<MonochromaticOverlayPresenterProps> & RefAttributes<MonochromaticOverlayPresenterRef>>) = React.forwardRef((props: React.PropsWithChildren<MonochromaticOverlayPresenterProps>, ref: React.ForwardedRef<MonochromaticOverlayPresenterRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.Primitives.MonochromaticOverlayPresenter' ref={ref} />);
export const MonochromaticOverlayPresenter = (_MonochromaticOverlayPresenter as (ForwardRefExoticComponent<React.PropsWithChildren<MonochromaticOverlayPresenterProps> & RefAttributes<MonochromaticOverlayPresenterRef>>));
}
export namespace WinUI {
export type NavigationViewItemPresenterProps = Omit<NativeWinUI.NativeNavigationViewItemPresenterProps, 'type'>;
export type NavigationViewItemPresenterRef = React.Component<NativeWinUI.NativeNavigationViewItemPresenterProps> & Readonly<NativeMethods>;
const _NavigationViewItemPresenter : (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewItemPresenterProps> & RefAttributes<NavigationViewItemPresenterRef>>) = React.forwardRef((props: React.PropsWithChildren<NavigationViewItemPresenterProps>, ref: React.ForwardedRef<NavigationViewItemPresenterRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.Primitives.NavigationViewItemPresenter' ref={ref} />);
export const NavigationViewItemPresenter = (_NavigationViewItemPresenter as (ForwardRefExoticComponent<React.PropsWithChildren<NavigationViewItemPresenterProps> & RefAttributes<NavigationViewItemPresenterRef>>));
}
export namespace WinUI {
export type TabViewListViewProps = Omit<NativeWinUI.NativeTabViewListViewProps, 'type'>;
export type TabViewListViewRef = React.Component<NativeWinUI.NativeTabViewListViewProps> & Readonly<NativeMethods>;
const _TabViewListView : (ForwardRefExoticComponent<React.PropsWithChildren<TabViewListViewProps> & RefAttributes<TabViewListViewRef>>) = React.forwardRef((props: React.PropsWithChildren<TabViewListViewProps>, ref: React.ForwardedRef<TabViewListViewRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.Primitives.TabViewListView' ref={ref} />);
export const TabViewListView = (_TabViewListView as (ForwardRefExoticComponent<React.PropsWithChildren<TabViewListViewProps> & RefAttributes<TabViewListViewRef>>));
}
export namespace WinUI {
export type ProgressBarProps = Omit<NativeWinUI.NativeProgressBarProps, 'type'>;
export type ProgressBarRef = React.Component<NativeWinUI.NativeProgressBarProps> & Readonly<NativeMethods>;
const _ProgressBar : (ForwardRefExoticComponent<React.PropsWithChildren<ProgressBarProps> & RefAttributes<ProgressBarRef>>) = React.forwardRef((props: React.PropsWithChildren<ProgressBarProps>, ref: React.ForwardedRef<ProgressBarRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.ProgressBar' ref={ref} />);
export const ProgressBar = (_ProgressBar as (ForwardRefExoticComponent<React.PropsWithChildren<ProgressBarProps> & RefAttributes<ProgressBarRef>>));
}
export namespace WinUI {
export type ProgressRingProps = Omit<NativeWinUI.NativeProgressRingProps, 'type'>;
export type ProgressRingRef = React.Component<NativeWinUI.NativeProgressRingProps> & Readonly<NativeMethods>;
const _ProgressRing : (ForwardRefExoticComponent<React.PropsWithChildren<ProgressRingProps> & RefAttributes<ProgressRingRef>>) = React.forwardRef((props: React.PropsWithChildren<ProgressRingProps>, ref: React.ForwardedRef<ProgressRingRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.ProgressRing' ref={ref} />);
export const ProgressRing = (_ProgressRing as (ForwardRefExoticComponent<React.PropsWithChildren<ProgressRingProps> & RefAttributes<ProgressRingRef>>));
}
export namespace WinUI {
export type RadioButtonsProps = Omit<NativeWinUI.NativeRadioButtonsProps, 'type'>;
export type RadioButtonsRef = React.Component<NativeWinUI.NativeRadioButtonsProps> & Readonly<NativeMethods>;
const _RadioButtons : (ForwardRefExoticComponent<React.PropsWithChildren<RadioButtonsProps> & RefAttributes<RadioButtonsRef>>) = React.forwardRef((props: React.PropsWithChildren<RadioButtonsProps>, ref: React.ForwardedRef<RadioButtonsRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.RadioButtons' ref={ref} />);
export const RadioButtons = (_RadioButtons as (ForwardRefExoticComponent<React.PropsWithChildren<RadioButtonsProps> & RefAttributes<RadioButtonsRef>>));
}
export namespace WinUI {
export type RadioMenuFlyoutItemProps = Omit<NativeWinUI.NativeRadioMenuFlyoutItemProps, 'type'>;
export type RadioMenuFlyoutItemRef = React.Component<NativeWinUI.NativeRadioMenuFlyoutItemProps> & Readonly<NativeMethods>;
const _RadioMenuFlyoutItem : (ForwardRefExoticComponent<React.PropsWithChildren<RadioMenuFlyoutItemProps> & RefAttributes<RadioMenuFlyoutItemRef>>) = React.forwardRef((props: React.PropsWithChildren<RadioMenuFlyoutItemProps>, ref: React.ForwardedRef<RadioMenuFlyoutItemRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.RadioMenuFlyoutItem' ref={ref} />);
export const RadioMenuFlyoutItem = (_RadioMenuFlyoutItem as (ForwardRefExoticComponent<React.PropsWithChildren<RadioMenuFlyoutItemProps> & RefAttributes<RadioMenuFlyoutItemRef>>));
}
export namespace WinUI {
export type RatingControlProps = Omit<NativeWinUI.NativeRatingControlProps, 'type'>;
export type RatingControlRef = React.Component<NativeWinUI.NativeRatingControlProps> & Readonly<NativeMethods>;
const _RatingControl : (ForwardRefExoticComponent<React.PropsWithChildren<RatingControlProps> & RefAttributes<RatingControlRef>>) = React.forwardRef((props: React.PropsWithChildren<RatingControlProps>, ref: React.ForwardedRef<RatingControlRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.RatingControl' ref={ref} />);
export const RatingControl = (_RatingControl as (ForwardRefExoticComponent<React.PropsWithChildren<RatingControlProps> & RefAttributes<RatingControlRef>>));
}
export namespace WinUI {
export type RefreshContainerProps = Omit<NativeWinUI.NativeRefreshContainerProps, 'type'>;
export type RefreshContainerRef = React.Component<NativeWinUI.NativeRefreshContainerProps> & Readonly<NativeMethods>;
const _RefreshContainer : (ForwardRefExoticComponent<React.PropsWithChildren<RefreshContainerProps> & RefAttributes<RefreshContainerRef>>) = React.forwardRef((props: React.PropsWithChildren<RefreshContainerProps>, ref: React.ForwardedRef<RefreshContainerRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.RefreshContainer' ref={ref} />);
export const RefreshContainer = (_RefreshContainer as (ForwardRefExoticComponent<React.PropsWithChildren<RefreshContainerProps> & RefAttributes<RefreshContainerRef>>));
}
export namespace WinUI {
export type RefreshVisualizerProps = Omit<NativeWinUI.NativeRefreshVisualizerProps, 'type'>;
export type RefreshVisualizerRef = React.Component<NativeWinUI.NativeRefreshVisualizerProps> & Readonly<NativeMethods>;
const _RefreshVisualizer : (ForwardRefExoticComponent<React.PropsWithChildren<RefreshVisualizerProps> & RefAttributes<RefreshVisualizerRef>>) = React.forwardRef((props: React.PropsWithChildren<RefreshVisualizerProps>, ref: React.ForwardedRef<RefreshVisualizerRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.RefreshVisualizer' ref={ref} />);
export const RefreshVisualizer = (_RefreshVisualizer as (ForwardRefExoticComponent<React.PropsWithChildren<RefreshVisualizerProps> & RefAttributes<RefreshVisualizerRef>>));
}
export namespace WinUI {
export type RevealListViewItemPresenterProps = Omit<NativeWinUI.NativeRevealListViewItemPresenterProps, 'type'>;
export type RevealListViewItemPresenterRef = React.Component<NativeWinUI.NativeRevealListViewItemPresenterProps> & Readonly<NativeMethods>;
const _RevealListViewItemPresenter : (ForwardRefExoticComponent<React.PropsWithChildren<RevealListViewItemPresenterProps> & RefAttributes<RevealListViewItemPresenterRef>>) = React.forwardRef((props: React.PropsWithChildren<RevealListViewItemPresenterProps>, ref: React.ForwardedRef<RevealListViewItemPresenterRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.RevealListViewItemPresenter' ref={ref} />);
export const RevealListViewItemPresenter = (_RevealListViewItemPresenter as (ForwardRefExoticComponent<React.PropsWithChildren<RevealListViewItemPresenterProps> & RefAttributes<RevealListViewItemPresenterRef>>));
}
export namespace WinUI {
export type SplitButtonProps = Omit<NativeWinUI.NativeSplitButtonProps, 'type'>;
export type SplitButtonRef = React.Component<NativeWinUI.NativeSplitButtonProps> & Readonly<NativeMethods>;
const _SplitButton : (ForwardRefExoticComponent<React.PropsWithChildren<SplitButtonProps> & RefAttributes<SplitButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<SplitButtonProps>, ref: React.ForwardedRef<SplitButtonRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.SplitButton' ref={ref} />);
export const SplitButton = (_SplitButton as (ForwardRefExoticComponent<React.PropsWithChildren<SplitButtonProps> & RefAttributes<SplitButtonRef>>));
}
export namespace WinUI {
export type SwipeControlProps = Omit<NativeWinUI.NativeSwipeControlProps, 'type'>;
export type SwipeControlRef = React.Component<NativeWinUI.NativeSwipeControlProps> & Readonly<NativeMethods>;
const _SwipeControl : (ForwardRefExoticComponent<React.PropsWithChildren<SwipeControlProps> & RefAttributes<SwipeControlRef>>) = React.forwardRef((props: React.PropsWithChildren<SwipeControlProps>, ref: React.ForwardedRef<SwipeControlRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.SwipeControl' ref={ref} />);
export const SwipeControl = (_SwipeControl as (ForwardRefExoticComponent<React.PropsWithChildren<SwipeControlProps> & RefAttributes<SwipeControlRef>>));
}
export namespace WinUI {
export type TabViewProps = Omit<NativeWinUI.NativeTabViewProps, 'type'>;
export type TabViewRef = React.Component<NativeWinUI.NativeTabViewProps> & Readonly<NativeMethods>;
const _TabView : (ForwardRefExoticComponent<React.PropsWithChildren<TabViewProps> & RefAttributes<TabViewRef>>) = React.forwardRef((props: React.PropsWithChildren<TabViewProps>, ref: React.ForwardedRef<TabViewRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.TabView' ref={ref} />);
export const TabView = (_TabView as (ForwardRefExoticComponent<React.PropsWithChildren<TabViewProps> & RefAttributes<TabViewRef>>));
}
export namespace WinUI {
export type TabViewItemProps = Omit<NativeWinUI.NativeTabViewItemProps, 'type'>;
export type TabViewItemRef = React.Component<NativeWinUI.NativeTabViewItemProps> & Readonly<NativeMethods>;
const _TabViewItem : (ForwardRefExoticComponent<React.PropsWithChildren<TabViewItemProps> & RefAttributes<TabViewItemRef>>) = React.forwardRef((props: React.PropsWithChildren<TabViewItemProps>, ref: React.ForwardedRef<TabViewItemRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.TabViewItem' ref={ref} />);
export const TabViewItem = (_TabViewItem as (ForwardRefExoticComponent<React.PropsWithChildren<TabViewItemProps> & RefAttributes<TabViewItemRef>>));
}
export namespace WinUI {
export type TeachingTipProps = Omit<NativeWinUI.NativeTeachingTipProps, 'type'>;
export type TeachingTipRef = React.Component<NativeWinUI.NativeTeachingTipProps> & Readonly<NativeMethods>;
const _TeachingTip : (ForwardRefExoticComponent<React.PropsWithChildren<TeachingTipProps> & RefAttributes<TeachingTipRef>>) = React.forwardRef((props: React.PropsWithChildren<TeachingTipProps>, ref: React.ForwardedRef<TeachingTipRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.TeachingTip' ref={ref} />);
export const TeachingTip = (_TeachingTip as (ForwardRefExoticComponent<React.PropsWithChildren<TeachingTipProps> & RefAttributes<TeachingTipRef>>));
}
export namespace WinUI {
export type TextCommandBarFlyoutProps = Omit<NativeWinUI.NativeTextCommandBarFlyoutProps, 'type'>;
export type TextCommandBarFlyoutRef = React.Component<NativeWinUI.NativeTextCommandBarFlyoutProps> & Readonly<NativeMethods>;
const _TextCommandBarFlyout : (ForwardRefExoticComponent<React.PropsWithChildren<TextCommandBarFlyoutProps> & RefAttributes<TextCommandBarFlyoutRef>>) = React.forwardRef((props: React.PropsWithChildren<TextCommandBarFlyoutProps>, ref: React.ForwardedRef<TextCommandBarFlyoutRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.TextCommandBarFlyout' ref={ref} />);
export const TextCommandBarFlyout = (_TextCommandBarFlyout as (ForwardRefExoticComponent<React.PropsWithChildren<TextCommandBarFlyoutProps> & RefAttributes<TextCommandBarFlyoutRef>>));
}
export namespace WinUI {
export type ToggleSplitButtonProps = Omit<NativeWinUI.NativeToggleSplitButtonProps, 'type'>;
export type ToggleSplitButtonRef = React.Component<NativeWinUI.NativeToggleSplitButtonProps> & Readonly<NativeMethods>;
const _ToggleSplitButton : (ForwardRefExoticComponent<React.PropsWithChildren<ToggleSplitButtonProps> & RefAttributes<ToggleSplitButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<ToggleSplitButtonProps>, ref: React.ForwardedRef<ToggleSplitButtonRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.ToggleSplitButton' ref={ref} />);
export const ToggleSplitButton = (_ToggleSplitButton as (ForwardRefExoticComponent<React.PropsWithChildren<ToggleSplitButtonProps> & RefAttributes<ToggleSplitButtonRef>>));
}
export namespace WinUI {
export type TreeViewProps = Omit<NativeWinUI.NativeTreeViewProps, 'type'>;
export type TreeViewRef = React.Component<NativeWinUI.NativeTreeViewProps> & Readonly<NativeMethods>;
const _TreeView : (ForwardRefExoticComponent<React.PropsWithChildren<TreeViewProps> & RefAttributes<TreeViewRef>>) = React.forwardRef((props: React.PropsWithChildren<TreeViewProps>, ref: React.ForwardedRef<TreeViewRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.TreeView' ref={ref} />);
export const TreeView = (_TreeView as (ForwardRefExoticComponent<React.PropsWithChildren<TreeViewProps> & RefAttributes<TreeViewRef>>));
}
export namespace WinUI {
export type TreeViewItemProps = Omit<NativeWinUI.NativeTreeViewItemProps, 'type'>;
export type TreeViewItemRef = React.Component<NativeWinUI.NativeTreeViewItemProps> & Readonly<NativeMethods>;
const _TreeViewItem : (ForwardRefExoticComponent<React.PropsWithChildren<TreeViewItemProps> & RefAttributes<TreeViewItemRef>>) = React.forwardRef((props: React.PropsWithChildren<TreeViewItemProps>, ref: React.ForwardedRef<TreeViewItemRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.TreeViewItem' ref={ref} />);
export const TreeViewItem = (_TreeViewItem as (ForwardRefExoticComponent<React.PropsWithChildren<TreeViewItemProps> & RefAttributes<TreeViewItemRef>>));
}
export namespace WinUI {
export type TreeViewListProps = Omit<NativeWinUI.NativeTreeViewListProps, 'type'>;
export type TreeViewListRef = React.Component<NativeWinUI.NativeTreeViewListProps> & Readonly<NativeMethods>;
const _TreeViewList : (ForwardRefExoticComponent<React.PropsWithChildren<TreeViewListProps> & RefAttributes<TreeViewListRef>>) = React.forwardRef((props: React.PropsWithChildren<TreeViewListProps>, ref: React.ForwardedRef<TreeViewListRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.TreeViewList' ref={ref} />);
export const TreeViewList = (_TreeViewList as (ForwardRefExoticComponent<React.PropsWithChildren<TreeViewListProps> & RefAttributes<TreeViewListRef>>));
}
export namespace WinUI {
export type TwoPaneViewProps = Omit<NativeWinUI.NativeTwoPaneViewProps, 'type'>;
export type TwoPaneViewRef = React.Component<NativeWinUI.NativeTwoPaneViewProps> & Readonly<NativeMethods>;
const _TwoPaneView : (ForwardRefExoticComponent<React.PropsWithChildren<TwoPaneViewProps> & RefAttributes<TwoPaneViewRef>>) = React.forwardRef((props: React.PropsWithChildren<TwoPaneViewProps>, ref: React.ForwardedRef<TwoPaneViewRef>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.TwoPaneView' ref={ref} />);
export const TwoPaneView = (_TwoPaneView as (ForwardRefExoticComponent<React.PropsWithChildren<TwoPaneViewProps> & RefAttributes<TwoPaneViewRef>>));
}
export namespace WinUI {
export type WebView2Props = Omit<NativeWinUI.NativeWebView2Props, 'type'>;
export type WebView2Ref = React.Component<NativeWinUI.NativeWebView2Props> & Readonly<NativeMethods>;
const _WebView2 : (ForwardRefExoticComponent<React.PropsWithChildren<WebView2Props> & RefAttributes<WebView2Ref>>) = React.forwardRef((props: React.PropsWithChildren<WebView2Props>, ref: React.ForwardedRef<WebView2Ref>) => <NativeXamlControl {...props} type='Microsoft.UI.Xaml.Controls.WebView2' ref={ref} />);
export const WebView2 = (_WebView2 as (ForwardRefExoticComponent<React.PropsWithChildren<WebView2Props> & RefAttributes<WebView2Ref>>));
}
export type ContentControlProps = Omit<NativeContentControlProps, 'type'>;
export type ContentControlRef = React.Component<NativeContentControlProps> & Readonly<NativeMethods>;
const _ContentControl : (ForwardRefExoticComponent<React.PropsWithChildren<ContentControlProps> & RefAttributes<ContentControlRef>>) = React.forwardRef((props: React.PropsWithChildren<ContentControlProps>, ref: React.ForwardedRef<ContentControlRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.ContentControl' ref={ref} />);
export const ContentControl = (_ContentControl as (ForwardRefExoticComponent<React.PropsWithChildren<ContentControlProps> & RefAttributes<ContentControlRef>>));
export type AppBarProps = Omit<NativeAppBarProps, 'type'>;
export type AppBarRef = React.Component<NativeAppBarProps> & Readonly<NativeMethods>;
const _AppBar : (ForwardRefExoticComponent<React.PropsWithChildren<AppBarProps> & RefAttributes<AppBarRef>>) = React.forwardRef((props: React.PropsWithChildren<AppBarProps>, ref: React.ForwardedRef<AppBarRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.AppBar' ref={ref} />);
export const AppBar = (_AppBar as (ForwardRefExoticComponent<React.PropsWithChildren<AppBarProps> & RefAttributes<AppBarRef>>));
export type ButtonProps = Omit<NativeButtonProps, 'type'>;
export type ButtonRef = React.Component<NativeButtonProps> & Readonly<NativeMethods>;
const _Button : (ForwardRefExoticComponent<React.PropsWithChildren<ButtonProps> & RefAttributes<ButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<ButtonProps>, ref: React.ForwardedRef<ButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Button' ref={ref} />);
export const Button = (_Button as (ForwardRefExoticComponent<React.PropsWithChildren<ButtonProps> & RefAttributes<ButtonRef>>));
export type AppBarButtonProps = Omit<NativeAppBarButtonProps, 'type'>;
export type AppBarButtonRef = React.Component<NativeAppBarButtonProps> & Readonly<NativeMethods>;
const _AppBarButton : (ForwardRefExoticComponent<React.PropsWithChildren<AppBarButtonProps> & RefAttributes<AppBarButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<AppBarButtonProps>, ref: React.ForwardedRef<AppBarButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.AppBarButton' ref={ref} />);
export const AppBarButton = (_AppBarButton as (ForwardRefExoticComponent<React.PropsWithChildren<AppBarButtonProps> & RefAttributes<AppBarButtonRef>>));
export type AppBarElementContainerProps = Omit<NativeAppBarElementContainerProps, 'type'>;
export type AppBarElementContainerRef = React.Component<NativeAppBarElementContainerProps> & Readonly<NativeMethods>;
const _AppBarElementContainer : (ForwardRefExoticComponent<React.PropsWithChildren<AppBarElementContainerProps> & RefAttributes<AppBarElementContainerRef>>) = React.forwardRef((props: React.PropsWithChildren<AppBarElementContainerProps>, ref: React.ForwardedRef<AppBarElementContainerRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.AppBarElementContainer' ref={ref} />);
export const AppBarElementContainer = (_AppBarElementContainer as (ForwardRefExoticComponent<React.PropsWithChildren<AppBarElementContainerProps> & RefAttributes<AppBarElementContainerRef>>));
export type AppBarSeparatorProps = Omit<NativeAppBarSeparatorProps, 'type'>;
export type AppBarSeparatorRef = React.Component<NativeAppBarSeparatorProps> & Readonly<NativeMethods>;
const _AppBarSeparator : (ForwardRefExoticComponent<React.PropsWithChildren<AppBarSeparatorProps> & RefAttributes<AppBarSeparatorRef>>) = React.forwardRef((props: React.PropsWithChildren<AppBarSeparatorProps>, ref: React.ForwardedRef<AppBarSeparatorRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.AppBarSeparator' ref={ref} />);
export const AppBarSeparator = (_AppBarSeparator as (ForwardRefExoticComponent<React.PropsWithChildren<AppBarSeparatorProps> & RefAttributes<AppBarSeparatorRef>>));
export type ToggleButtonProps = Omit<NativeToggleButtonProps, 'type'>;
export type ToggleButtonRef = React.Component<NativeToggleButtonProps> & Readonly<NativeMethods>;
const _ToggleButton : (ForwardRefExoticComponent<React.PropsWithChildren<ToggleButtonProps> & RefAttributes<ToggleButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<ToggleButtonProps>, ref: React.ForwardedRef<ToggleButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Primitives.ToggleButton' ref={ref} />);
export const ToggleButton = (_ToggleButton as (ForwardRefExoticComponent<React.PropsWithChildren<ToggleButtonProps> & RefAttributes<ToggleButtonRef>>));
export type AppBarToggleButtonProps = Omit<NativeAppBarToggleButtonProps, 'type'>;
export type AppBarToggleButtonRef = React.Component<NativeAppBarToggleButtonProps> & Readonly<NativeMethods>;
const _AppBarToggleButton : (ForwardRefExoticComponent<React.PropsWithChildren<AppBarToggleButtonProps> & RefAttributes<AppBarToggleButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<AppBarToggleButtonProps>, ref: React.ForwardedRef<AppBarToggleButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.AppBarToggleButton' ref={ref} />);
export const AppBarToggleButton = (_AppBarToggleButton as (ForwardRefExoticComponent<React.PropsWithChildren<AppBarToggleButtonProps> & RefAttributes<AppBarToggleButtonRef>>));
export type ItemsControlProps = Omit<NativeItemsControlProps, 'type'>;
export type ItemsControlRef = React.Component<NativeItemsControlProps> & Readonly<NativeMethods>;
const _ItemsControl : (ForwardRefExoticComponent<React.PropsWithChildren<ItemsControlProps> & RefAttributes<ItemsControlRef>>) = React.forwardRef((props: React.PropsWithChildren<ItemsControlProps>, ref: React.ForwardedRef<ItemsControlRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.ItemsControl' ref={ref} />);
export const ItemsControl = (_ItemsControl as (ForwardRefExoticComponent<React.PropsWithChildren<ItemsControlProps> & RefAttributes<ItemsControlRef>>));
export type AutoSuggestBoxProps = Omit<NativeAutoSuggestBoxProps, 'type'>;
export type AutoSuggestBoxRef = React.Component<NativeAutoSuggestBoxProps> & Readonly<NativeMethods>;
const _AutoSuggestBox : (ForwardRefExoticComponent<React.PropsWithChildren<AutoSuggestBoxProps> & RefAttributes<AutoSuggestBoxRef>>) = React.forwardRef((props: React.PropsWithChildren<AutoSuggestBoxProps>, ref: React.ForwardedRef<AutoSuggestBoxRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.AutoSuggestBox' ref={ref} />);
export const AutoSuggestBox = (_AutoSuggestBox as (ForwardRefExoticComponent<React.PropsWithChildren<AutoSuggestBoxProps> & RefAttributes<AutoSuggestBoxRef>>));
export type BitmapIconProps = Omit<NativeBitmapIconProps, 'type'>;
export type BitmapIconRef = React.Component<NativeBitmapIconProps> & Readonly<NativeMethods>;
const _BitmapIcon : (ForwardRefExoticComponent<React.PropsWithChildren<BitmapIconProps> & RefAttributes<BitmapIconRef>>) = React.forwardRef((props: React.PropsWithChildren<BitmapIconProps>, ref: React.ForwardedRef<BitmapIconRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.BitmapIcon' ref={ref} />);
export const BitmapIcon = (_BitmapIcon as (ForwardRefExoticComponent<React.PropsWithChildren<BitmapIconProps> & RefAttributes<BitmapIconRef>>));
export type BorderProps = Omit<NativeBorderProps, 'type'>;
export type BorderRef = React.Component<NativeBorderProps> & Readonly<NativeMethods>;
const _Border : (ForwardRefExoticComponent<React.PropsWithChildren<BorderProps> & RefAttributes<BorderRef>>) = React.forwardRef((props: React.PropsWithChildren<BorderProps>, ref: React.ForwardedRef<BorderRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Border' ref={ref} />);
export const Border = (_Border as (ForwardRefExoticComponent<React.PropsWithChildren<BorderProps> & RefAttributes<BorderRef>>));
export type CalendarDatePickerProps = Omit<NativeCalendarDatePickerProps, 'type'>;
export type CalendarDatePickerRef = React.Component<NativeCalendarDatePickerProps> & Readonly<NativeMethods>;
const _CalendarDatePicker : (ForwardRefExoticComponent<React.PropsWithChildren<CalendarDatePickerProps> & RefAttributes<CalendarDatePickerRef>>) = React.forwardRef((props: React.PropsWithChildren<CalendarDatePickerProps>, ref: React.ForwardedRef<CalendarDatePickerRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.CalendarDatePicker' ref={ref} />);
export const CalendarDatePicker = (_CalendarDatePicker as (ForwardRefExoticComponent<React.PropsWithChildren<CalendarDatePickerProps> & RefAttributes<CalendarDatePickerRef>>));
export type CalendarViewProps = Omit<NativeCalendarViewProps, 'type'>;
export type CalendarViewRef = React.Component<NativeCalendarViewProps> & Readonly<NativeMethods>;
const _CalendarView : (ForwardRefExoticComponent<React.PropsWithChildren<CalendarViewProps> & RefAttributes<CalendarViewRef>>) = React.forwardRef((props: React.PropsWithChildren<CalendarViewProps>, ref: React.ForwardedRef<CalendarViewRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.CalendarView' ref={ref} />);
export const CalendarView = (_CalendarView as (ForwardRefExoticComponent<React.PropsWithChildren<CalendarViewProps> & RefAttributes<CalendarViewRef>>));
export type CalendarViewDayItemProps = Omit<NativeCalendarViewDayItemProps, 'type'>;
export type CalendarViewDayItemRef = React.Component<NativeCalendarViewDayItemProps> & Readonly<NativeMethods>;
const _CalendarViewDayItem : (ForwardRefExoticComponent<React.PropsWithChildren<CalendarViewDayItemProps> & RefAttributes<CalendarViewDayItemRef>>) = React.forwardRef((props: React.PropsWithChildren<CalendarViewDayItemProps>, ref: React.ForwardedRef<CalendarViewDayItemRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.CalendarViewDayItem' ref={ref} />);
export const CalendarViewDayItem = (_CalendarViewDayItem as (ForwardRefExoticComponent<React.PropsWithChildren<CalendarViewDayItemProps> & RefAttributes<CalendarViewDayItemRef>>));
export type CanvasProps = Omit<NativeCanvasProps, 'type'>;
export type CanvasRef = React.Component<NativeCanvasProps> & Readonly<NativeMethods>;
const _Canvas : (ForwardRefExoticComponent<React.PropsWithChildren<CanvasProps> & RefAttributes<CanvasRef>>) = React.forwardRef((props: React.PropsWithChildren<CanvasProps>, ref: React.ForwardedRef<CanvasRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Canvas' ref={ref} />);
export const Canvas = (_Canvas as (ForwardRefExoticComponent<React.PropsWithChildren<CanvasProps> & RefAttributes<CanvasRef>>));
export type CaptureElementProps = Omit<NativeCaptureElementProps, 'type'>;
export type CaptureElementRef = React.Component<NativeCaptureElementProps> & Readonly<NativeMethods>;
const _CaptureElement : (ForwardRefExoticComponent<React.PropsWithChildren<CaptureElementProps> & RefAttributes<CaptureElementRef>>) = React.forwardRef((props: React.PropsWithChildren<CaptureElementProps>, ref: React.ForwardedRef<CaptureElementRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.CaptureElement' ref={ref} />);
export const CaptureElement = (_CaptureElement as (ForwardRefExoticComponent<React.PropsWithChildren<CaptureElementProps> & RefAttributes<CaptureElementRef>>));
export type CheckBoxProps = Omit<NativeCheckBoxProps, 'type'>;
export type CheckBoxRef = React.Component<NativeCheckBoxProps> & Readonly<NativeMethods>;
const _CheckBox : (ForwardRefExoticComponent<React.PropsWithChildren<CheckBoxProps> & RefAttributes<CheckBoxRef>>) = React.forwardRef((props: React.PropsWithChildren<CheckBoxProps>, ref: React.ForwardedRef<CheckBoxRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.CheckBox' ref={ref} />);
export const CheckBox = (_CheckBox as (ForwardRefExoticComponent<React.PropsWithChildren<CheckBoxProps> & RefAttributes<CheckBoxRef>>));
export type ColorPickerProps = Omit<NativeColorPickerProps, 'type'>;
export type ColorPickerRef = React.Component<NativeColorPickerProps> & Readonly<NativeMethods>;
const _ColorPicker : (ForwardRefExoticComponent<React.PropsWithChildren<ColorPickerProps> & RefAttributes<ColorPickerRef>>) = React.forwardRef((props: React.PropsWithChildren<ColorPickerProps>, ref: React.ForwardedRef<ColorPickerRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.ColorPicker' ref={ref} />);
export const ColorPicker = (_ColorPicker as (ForwardRefExoticComponent<React.PropsWithChildren<ColorPickerProps> & RefAttributes<ColorPickerRef>>));
export type ComboBoxProps = Omit<NativeComboBoxProps, 'type'>;
export type ComboBoxRef = React.Component<NativeComboBoxProps> & Readonly<NativeMethods>;
const _ComboBox : (ForwardRefExoticComponent<React.PropsWithChildren<ComboBoxProps> & RefAttributes<ComboBoxRef>>) = React.forwardRef((props: React.PropsWithChildren<ComboBoxProps>, ref: React.ForwardedRef<ComboBoxRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.ComboBox' ref={ref} />);
export const ComboBox = (_ComboBox as (ForwardRefExoticComponent<React.PropsWithChildren<ComboBoxProps> & RefAttributes<ComboBoxRef>>));
export type ComboBoxItemProps = Omit<NativeComboBoxItemProps, 'type'>;
export type ComboBoxItemRef = React.Component<NativeComboBoxItemProps> & Readonly<NativeMethods>;
const _ComboBoxItem : (ForwardRefExoticComponent<React.PropsWithChildren<ComboBoxItemProps> & RefAttributes<ComboBoxItemRef>>) = React.forwardRef((props: React.PropsWithChildren<ComboBoxItemProps>, ref: React.ForwardedRef<ComboBoxItemRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.ComboBoxItem' ref={ref} />);
export const ComboBoxItem = (_ComboBoxItem as (ForwardRefExoticComponent<React.PropsWithChildren<ComboBoxItemProps> & RefAttributes<ComboBoxItemRef>>));
export type CommandBarProps = Omit<NativeCommandBarProps, 'type'>;
export type CommandBarRef = React.Component<NativeCommandBarProps> & Readonly<NativeMethods>;
const _CommandBar : (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarProps> & RefAttributes<CommandBarRef>>) = React.forwardRef((props: React.PropsWithChildren<CommandBarProps>, ref: React.ForwardedRef<CommandBarRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.CommandBar' ref={ref} />);
export const CommandBar = (_CommandBar as (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarProps> & RefAttributes<CommandBarRef>>));
export type CommandBarFlyoutProps = Omit<NativeCommandBarFlyoutProps, 'type'>;
export type CommandBarFlyoutRef = React.Component<NativeCommandBarFlyoutProps> & Readonly<NativeMethods>;
const _CommandBarFlyout : (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarFlyoutProps> & RefAttributes<CommandBarFlyoutRef>>) = React.forwardRef((props: React.PropsWithChildren<CommandBarFlyoutProps>, ref: React.ForwardedRef<CommandBarFlyoutRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.CommandBarFlyout' ref={ref} />);
export const CommandBarFlyout = (_CommandBarFlyout as (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarFlyoutProps> & RefAttributes<CommandBarFlyoutRef>>));
export type CommandBarOverflowPresenterProps = Omit<NativeCommandBarOverflowPresenterProps, 'type'>;
export type CommandBarOverflowPresenterRef = React.Component<NativeCommandBarOverflowPresenterProps> & Readonly<NativeMethods>;
const _CommandBarOverflowPresenter : (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarOverflowPresenterProps> & RefAttributes<CommandBarOverflowPresenterRef>>) = React.forwardRef((props: React.PropsWithChildren<CommandBarOverflowPresenterProps>, ref: React.ForwardedRef<CommandBarOverflowPresenterRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.CommandBarOverflowPresenter' ref={ref} />);
export const CommandBarOverflowPresenter = (_CommandBarOverflowPresenter as (ForwardRefExoticComponent<React.PropsWithChildren<CommandBarOverflowPresenterProps> & RefAttributes<CommandBarOverflowPresenterRef>>));
export type ContentDialogProps = Omit<NativeContentDialogProps, 'type'>;
export type ContentDialogRef = React.Component<NativeContentDialogProps> & Readonly<NativeMethods>;
const _ContentDialog : (ForwardRefExoticComponent<React.PropsWithChildren<ContentDialogProps> & RefAttributes<ContentDialogRef>>) = React.forwardRef((props: React.PropsWithChildren<ContentDialogProps>, ref: React.ForwardedRef<ContentDialogRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.ContentDialog' ref={ref} />);
export const ContentDialog = (_ContentDialog as (ForwardRefExoticComponent<React.PropsWithChildren<ContentDialogProps> & RefAttributes<ContentDialogRef>>));
export type ContentPresenterProps = Omit<NativeContentPresenterProps, 'type'>;
export type ContentPresenterRef = React.Component<NativeContentPresenterProps> & Readonly<NativeMethods>;
const _ContentPresenter : (ForwardRefExoticComponent<React.PropsWithChildren<ContentPresenterProps> & RefAttributes<ContentPresenterRef>>) = React.forwardRef((props: React.PropsWithChildren<ContentPresenterProps>, ref: React.ForwardedRef<ContentPresenterRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.ContentPresenter' ref={ref} />);
export const ContentPresenter = (_ContentPresenter as (ForwardRefExoticComponent<React.PropsWithChildren<ContentPresenterProps> & RefAttributes<ContentPresenterRef>>));
export type DatePickerProps = Omit<NativeDatePickerProps, 'type'>;
export type DatePickerRef = React.Component<NativeDatePickerProps> & Readonly<NativeMethods>;
const _DatePicker : (ForwardRefExoticComponent<React.PropsWithChildren<DatePickerProps> & RefAttributes<DatePickerRef>>) = React.forwardRef((props: React.PropsWithChildren<DatePickerProps>, ref: React.ForwardedRef<DatePickerRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.DatePicker' ref={ref} />);
export const DatePicker = (_DatePicker as (ForwardRefExoticComponent<React.PropsWithChildren<DatePickerProps> & RefAttributes<DatePickerRef>>));
export type DatePickerFlyoutProps = Omit<NativeDatePickerFlyoutProps, 'type'>;
export type DatePickerFlyoutRef = React.Component<NativeDatePickerFlyoutProps> & Readonly<NativeMethods>;
const _DatePickerFlyout : (ForwardRefExoticComponent<React.PropsWithChildren<DatePickerFlyoutProps> & RefAttributes<DatePickerFlyoutRef>>) = React.forwardRef((props: React.PropsWithChildren<DatePickerFlyoutProps>, ref: React.ForwardedRef<DatePickerFlyoutRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.DatePickerFlyout' ref={ref} />);
export const DatePickerFlyout = (_DatePickerFlyout as (ForwardRefExoticComponent<React.PropsWithChildren<DatePickerFlyoutProps> & RefAttributes<DatePickerFlyoutRef>>));
export type DropDownButtonProps = Omit<NativeDropDownButtonProps, 'type'>;
export type DropDownButtonRef = React.Component<NativeDropDownButtonProps> & Readonly<NativeMethods>;
const _DropDownButton : (ForwardRefExoticComponent<React.PropsWithChildren<DropDownButtonProps> & RefAttributes<DropDownButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<DropDownButtonProps>, ref: React.ForwardedRef<DropDownButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.DropDownButton' ref={ref} />);
export const DropDownButton = (_DropDownButton as (ForwardRefExoticComponent<React.PropsWithChildren<DropDownButtonProps> & RefAttributes<DropDownButtonRef>>));
export type FlipViewProps = Omit<NativeFlipViewProps, 'type'>;
export type FlipViewRef = React.Component<NativeFlipViewProps> & Readonly<NativeMethods>;
const _FlipView : (ForwardRefExoticComponent<React.PropsWithChildren<FlipViewProps> & RefAttributes<FlipViewRef>>) = React.forwardRef((props: React.PropsWithChildren<FlipViewProps>, ref: React.ForwardedRef<FlipViewRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.FlipView' ref={ref} />);
export const FlipView = (_FlipView as (ForwardRefExoticComponent<React.PropsWithChildren<FlipViewProps> & RefAttributes<FlipViewRef>>));
export type FlipViewItemProps = Omit<NativeFlipViewItemProps, 'type'>;
export type FlipViewItemRef = React.Component<NativeFlipViewItemProps> & Readonly<NativeMethods>;
const _FlipViewItem : (ForwardRefExoticComponent<React.PropsWithChildren<FlipViewItemProps> & RefAttributes<FlipViewItemRef>>) = React.forwardRef((props: React.PropsWithChildren<FlipViewItemProps>, ref: React.ForwardedRef<FlipViewItemRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.FlipViewItem' ref={ref} />);
export const FlipViewItem = (_FlipViewItem as (ForwardRefExoticComponent<React.PropsWithChildren<FlipViewItemProps> & RefAttributes<FlipViewItemRef>>));
export type FlyoutProps = Omit<NativeFlyoutProps, 'type'>;
export type FlyoutRef = React.Component<NativeFlyoutProps> & Readonly<NativeMethods>;
const _Flyout : (ForwardRefExoticComponent<React.PropsWithChildren<FlyoutProps> & RefAttributes<FlyoutRef>>) = React.forwardRef((props: React.PropsWithChildren<FlyoutProps>, ref: React.ForwardedRef<FlyoutRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Flyout' ref={ref} />);
export const Flyout = (_Flyout as (ForwardRefExoticComponent<React.PropsWithChildren<FlyoutProps> & RefAttributes<FlyoutRef>>));
export type FlyoutPresenterProps = Omit<NativeFlyoutPresenterProps, 'type'>;
export type FlyoutPresenterRef = React.Component<NativeFlyoutPresenterProps> & Readonly<NativeMethods>;
const _FlyoutPresenter : (ForwardRefExoticComponent<React.PropsWithChildren<FlyoutPresenterProps> & RefAttributes<FlyoutPresenterRef>>) = React.forwardRef((props: React.PropsWithChildren<FlyoutPresenterProps>, ref: React.ForwardedRef<FlyoutPresenterRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.FlyoutPresenter' ref={ref} />);
export const FlyoutPresenter = (_FlyoutPresenter as (ForwardRefExoticComponent<React.PropsWithChildren<FlyoutPresenterProps> & RefAttributes<FlyoutPresenterRef>>));
export type FontIconProps = Omit<NativeFontIconProps, 'type'>;
export type FontIconRef = React.Component<NativeFontIconProps> & Readonly<NativeMethods>;
const _FontIcon : (ForwardRefExoticComponent<React.PropsWithChildren<FontIconProps> & RefAttributes<FontIconRef>>) = React.forwardRef((props: React.PropsWithChildren<FontIconProps>, ref: React.ForwardedRef<FontIconRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.FontIcon' ref={ref} />);
export const FontIcon = (_FontIcon as (ForwardRefExoticComponent<React.PropsWithChildren<FontIconProps> & RefAttributes<FontIconRef>>));
export type FrameProps = Omit<NativeFrameProps, 'type'>;
export type FrameRef = React.Component<NativeFrameProps> & Readonly<NativeMethods>;
const _Frame : (ForwardRefExoticComponent<React.PropsWithChildren<FrameProps> & RefAttributes<FrameRef>>) = React.forwardRef((props: React.PropsWithChildren<FrameProps>, ref: React.ForwardedRef<FrameRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Frame' ref={ref} />);
export const Frame = (_Frame as (ForwardRefExoticComponent<React.PropsWithChildren<FrameProps> & RefAttributes<FrameRef>>));
export type GridProps = Omit<NativeGridProps, 'type'>;
export type GridRef = React.Component<NativeGridProps> & Readonly<NativeMethods>;
const _Grid : (ForwardRefExoticComponent<React.PropsWithChildren<GridProps> & RefAttributes<GridRef>>) = React.forwardRef((props: React.PropsWithChildren<GridProps>, ref: React.ForwardedRef<GridRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Grid' ref={ref} />);
export const Grid = (_Grid as (ForwardRefExoticComponent<React.PropsWithChildren<GridProps> & RefAttributes<GridRef>>));
export type GridViewProps = Omit<NativeGridViewProps, 'type'>;
export type GridViewRef = React.Component<NativeGridViewProps> & Readonly<NativeMethods>;
const _GridView : (ForwardRefExoticComponent<React.PropsWithChildren<GridViewProps> & RefAttributes<GridViewRef>>) = React.forwardRef((props: React.PropsWithChildren<GridViewProps>, ref: React.ForwardedRef<GridViewRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.GridView' ref={ref} />);
export const GridView = (_GridView as (ForwardRefExoticComponent<React.PropsWithChildren<GridViewProps> & RefAttributes<GridViewRef>>));
export type GridViewHeaderItemProps = Omit<NativeGridViewHeaderItemProps, 'type'>;
export type GridViewHeaderItemRef = React.Component<NativeGridViewHeaderItemProps> & Readonly<NativeMethods>;
const _GridViewHeaderItem : (ForwardRefExoticComponent<React.PropsWithChildren<GridViewHeaderItemProps> & RefAttributes<GridViewHeaderItemRef>>) = React.forwardRef((props: React.PropsWithChildren<GridViewHeaderItemProps>, ref: React.ForwardedRef<GridViewHeaderItemRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.GridViewHeaderItem' ref={ref} />);
export const GridViewHeaderItem = (_GridViewHeaderItem as (ForwardRefExoticComponent<React.PropsWithChildren<GridViewHeaderItemProps> & RefAttributes<GridViewHeaderItemRef>>));
export type GridViewItemProps = Omit<NativeGridViewItemProps, 'type'>;
export type GridViewItemRef = React.Component<NativeGridViewItemProps> & Readonly<NativeMethods>;
const _GridViewItem : (ForwardRefExoticComponent<React.PropsWithChildren<GridViewItemProps> & RefAttributes<GridViewItemRef>>) = React.forwardRef((props: React.PropsWithChildren<GridViewItemProps>, ref: React.ForwardedRef<GridViewItemRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.GridViewItem' ref={ref} />);
export const GridViewItem = (_GridViewItem as (ForwardRefExoticComponent<React.PropsWithChildren<GridViewItemProps> & RefAttributes<GridViewItemRef>>));
export type GroupItemProps = Omit<NativeGroupItemProps, 'type'>;
export type GroupItemRef = React.Component<NativeGroupItemProps> & Readonly<NativeMethods>;
const _GroupItem : (ForwardRefExoticComponent<React.PropsWithChildren<GroupItemProps> & RefAttributes<GroupItemRef>>) = React.forwardRef((props: React.PropsWithChildren<GroupItemProps>, ref: React.ForwardedRef<GroupItemRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.GroupItem' ref={ref} />);
export const GroupItem = (_GroupItem as (ForwardRefExoticComponent<React.PropsWithChildren<GroupItemProps> & RefAttributes<GroupItemRef>>));
export type HandwritingViewProps = Omit<NativeHandwritingViewProps, 'type'>;
export type HandwritingViewRef = React.Component<NativeHandwritingViewProps> & Readonly<NativeMethods>;
const _HandwritingView : (ForwardRefExoticComponent<React.PropsWithChildren<HandwritingViewProps> & RefAttributes<HandwritingViewRef>>) = React.forwardRef((props: React.PropsWithChildren<HandwritingViewProps>, ref: React.ForwardedRef<HandwritingViewRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.HandwritingView' ref={ref} />);
export const HandwritingView = (_HandwritingView as (ForwardRefExoticComponent<React.PropsWithChildren<HandwritingViewProps> & RefAttributes<HandwritingViewRef>>));
export type HubProps = Omit<NativeHubProps, 'type'>;
export type HubRef = React.Component<NativeHubProps> & Readonly<NativeMethods>;
const _Hub : (ForwardRefExoticComponent<React.PropsWithChildren<HubProps> & RefAttributes<HubRef>>) = React.forwardRef((props: React.PropsWithChildren<HubProps>, ref: React.ForwardedRef<HubRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Hub' ref={ref} />);
export const Hub = (_Hub as (ForwardRefExoticComponent<React.PropsWithChildren<HubProps> & RefAttributes<HubRef>>));
export type HubSectionProps = Omit<NativeHubSectionProps, 'type'>;
export type HubSectionRef = React.Component<NativeHubSectionProps> & Readonly<NativeMethods>;
const _HubSection : (ForwardRefExoticComponent<React.PropsWithChildren<HubSectionProps> & RefAttributes<HubSectionRef>>) = React.forwardRef((props: React.PropsWithChildren<HubSectionProps>, ref: React.ForwardedRef<HubSectionRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.HubSection' ref={ref} />);
export const HubSection = (_HubSection as (ForwardRefExoticComponent<React.PropsWithChildren<HubSectionProps> & RefAttributes<HubSectionRef>>));
export type HyperlinkButtonProps = Omit<NativeHyperlinkButtonProps, 'type'>;
export type HyperlinkButtonRef = React.Component<NativeHyperlinkButtonProps> & Readonly<NativeMethods>;
const _HyperlinkButton : (ForwardRefExoticComponent<React.PropsWithChildren<HyperlinkButtonProps> & RefAttributes<HyperlinkButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<HyperlinkButtonProps>, ref: React.ForwardedRef<HyperlinkButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.HyperlinkButton' ref={ref} />);
export const HyperlinkButton = (_HyperlinkButton as (ForwardRefExoticComponent<React.PropsWithChildren<HyperlinkButtonProps> & RefAttributes<HyperlinkButtonRef>>));
export type IconSourceElementProps = Omit<NativeIconSourceElementProps, 'type'>;
export type IconSourceElementRef = React.Component<NativeIconSourceElementProps> & Readonly<NativeMethods>;
const _IconSourceElement : (ForwardRefExoticComponent<React.PropsWithChildren<IconSourceElementProps> & RefAttributes<IconSourceElementRef>>) = React.forwardRef((props: React.PropsWithChildren<IconSourceElementProps>, ref: React.ForwardedRef<IconSourceElementRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.IconSourceElement' ref={ref} />);
export const IconSourceElement = (_IconSourceElement as (ForwardRefExoticComponent<React.PropsWithChildren<IconSourceElementProps> & RefAttributes<IconSourceElementRef>>));
export type ImageProps = Omit<NativeImageProps, 'type'>;
export type ImageRef = React.Component<NativeImageProps> & Readonly<NativeMethods>;
const _Image : (ForwardRefExoticComponent<React.PropsWithChildren<ImageProps> & RefAttributes<ImageRef>>) = React.forwardRef((props: React.PropsWithChildren<ImageProps>, ref: React.ForwardedRef<ImageRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.Image' ref={ref} />);
export const Image = (_Image as (ForwardRefExoticComponent<React.PropsWithChildren<ImageProps> & RefAttributes<ImageRef>>));
export type InkCanvasProps = Omit<NativeInkCanvasProps, 'type'>;
export type InkCanvasRef = React.Component<NativeInkCanvasProps> & Readonly<NativeMethods>;
const _InkCanvas : (ForwardRefExoticComponent<React.PropsWithChildren<InkCanvasProps> & RefAttributes<InkCanvasRef>>) = React.forwardRef((props: React.PropsWithChildren<InkCanvasProps>, ref: React.ForwardedRef<InkCanvasRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkCanvas' ref={ref} />);
export const InkCanvas = (_InkCanvas as (ForwardRefExoticComponent<React.PropsWithChildren<InkCanvasProps> & RefAttributes<InkCanvasRef>>));
export type InkToolbarProps = Omit<NativeInkToolbarProps, 'type'>;
export type InkToolbarRef = React.Component<NativeInkToolbarProps> & Readonly<NativeMethods>;
const _InkToolbar : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarProps> & RefAttributes<InkToolbarRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarProps>, ref: React.ForwardedRef<InkToolbarRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbar' ref={ref} />);
export const InkToolbar = (_InkToolbar as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarProps> & RefAttributes<InkToolbarRef>>));
export type RadioButtonProps = Omit<NativeRadioButtonProps, 'type'>;
export type RadioButtonRef = React.Component<NativeRadioButtonProps> & Readonly<NativeMethods>;
const _RadioButton : (ForwardRefExoticComponent<React.PropsWithChildren<RadioButtonProps> & RefAttributes<RadioButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<RadioButtonProps>, ref: React.ForwardedRef<RadioButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.RadioButton' ref={ref} />);
export const RadioButton = (_RadioButton as (ForwardRefExoticComponent<React.PropsWithChildren<RadioButtonProps> & RefAttributes<RadioButtonRef>>));
export type InkToolbarBallpointPenButtonProps = Omit<NativeInkToolbarBallpointPenButtonProps, 'type'>;
export type InkToolbarBallpointPenButtonRef = React.Component<NativeInkToolbarBallpointPenButtonProps> & Readonly<NativeMethods>;
const _InkToolbarBallpointPenButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarBallpointPenButtonProps> & RefAttributes<InkToolbarBallpointPenButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarBallpointPenButtonProps>, ref: React.ForwardedRef<InkToolbarBallpointPenButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarBallpointPenButton' ref={ref} />);
export const InkToolbarBallpointPenButton = (_InkToolbarBallpointPenButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarBallpointPenButtonProps> & RefAttributes<InkToolbarBallpointPenButtonRef>>));
export type InkToolbarCustomPenButtonProps = Omit<NativeInkToolbarCustomPenButtonProps, 'type'>;
export type InkToolbarCustomPenButtonRef = React.Component<NativeInkToolbarCustomPenButtonProps> & Readonly<NativeMethods>;
const _InkToolbarCustomPenButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarCustomPenButtonProps> & RefAttributes<InkToolbarCustomPenButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarCustomPenButtonProps>, ref: React.ForwardedRef<InkToolbarCustomPenButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarCustomPenButton' ref={ref} />);
export const InkToolbarCustomPenButton = (_InkToolbarCustomPenButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarCustomPenButtonProps> & RefAttributes<InkToolbarCustomPenButtonRef>>));
export type InkToolbarCustomToggleButtonProps = Omit<NativeInkToolbarCustomToggleButtonProps, 'type'>;
export type InkToolbarCustomToggleButtonRef = React.Component<NativeInkToolbarCustomToggleButtonProps> & Readonly<NativeMethods>;
const _InkToolbarCustomToggleButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarCustomToggleButtonProps> & RefAttributes<InkToolbarCustomToggleButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarCustomToggleButtonProps>, ref: React.ForwardedRef<InkToolbarCustomToggleButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarCustomToggleButton' ref={ref} />);
export const InkToolbarCustomToggleButton = (_InkToolbarCustomToggleButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarCustomToggleButtonProps> & RefAttributes<InkToolbarCustomToggleButtonRef>>));
export type InkToolbarCustomToolButtonProps = Omit<NativeInkToolbarCustomToolButtonProps, 'type'>;
export type InkToolbarCustomToolButtonRef = React.Component<NativeInkToolbarCustomToolButtonProps> & Readonly<NativeMethods>;
const _InkToolbarCustomToolButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarCustomToolButtonProps> & RefAttributes<InkToolbarCustomToolButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarCustomToolButtonProps>, ref: React.ForwardedRef<InkToolbarCustomToolButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarCustomToolButton' ref={ref} />);
export const InkToolbarCustomToolButton = (_InkToolbarCustomToolButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarCustomToolButtonProps> & RefAttributes<InkToolbarCustomToolButtonRef>>));
export type InkToolbarEraserButtonProps = Omit<NativeInkToolbarEraserButtonProps, 'type'>;
export type InkToolbarEraserButtonRef = React.Component<NativeInkToolbarEraserButtonProps> & Readonly<NativeMethods>;
const _InkToolbarEraserButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarEraserButtonProps> & RefAttributes<InkToolbarEraserButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarEraserButtonProps>, ref: React.ForwardedRef<InkToolbarEraserButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarEraserButton' ref={ref} />);
export const InkToolbarEraserButton = (_InkToolbarEraserButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarEraserButtonProps> & RefAttributes<InkToolbarEraserButtonRef>>));
export type InkToolbarFlyoutItemProps = Omit<NativeInkToolbarFlyoutItemProps, 'type'>;
export type InkToolbarFlyoutItemRef = React.Component<NativeInkToolbarFlyoutItemProps> & Readonly<NativeMethods>;
const _InkToolbarFlyoutItem : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarFlyoutItemProps> & RefAttributes<InkToolbarFlyoutItemRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarFlyoutItemProps>, ref: React.ForwardedRef<InkToolbarFlyoutItemRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarFlyoutItem' ref={ref} />);
export const InkToolbarFlyoutItem = (_InkToolbarFlyoutItem as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarFlyoutItemProps> & RefAttributes<InkToolbarFlyoutItemRef>>));
export type InkToolbarHighlighterButtonProps = Omit<NativeInkToolbarHighlighterButtonProps, 'type'>;
export type InkToolbarHighlighterButtonRef = React.Component<NativeInkToolbarHighlighterButtonProps> & Readonly<NativeMethods>;
const _InkToolbarHighlighterButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarHighlighterButtonProps> & RefAttributes<InkToolbarHighlighterButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarHighlighterButtonProps>, ref: React.ForwardedRef<InkToolbarHighlighterButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarHighlighterButton' ref={ref} />);
export const InkToolbarHighlighterButton = (_InkToolbarHighlighterButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarHighlighterButtonProps> & RefAttributes<InkToolbarHighlighterButtonRef>>));
export type InkToolbarPenConfigurationControlProps = Omit<NativeInkToolbarPenConfigurationControlProps, 'type'>;
export type InkToolbarPenConfigurationControlRef = React.Component<NativeInkToolbarPenConfigurationControlProps> & Readonly<NativeMethods>;
const _InkToolbarPenConfigurationControl : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarPenConfigurationControlProps> & RefAttributes<InkToolbarPenConfigurationControlRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarPenConfigurationControlProps>, ref: React.ForwardedRef<InkToolbarPenConfigurationControlRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarPenConfigurationControl' ref={ref} />);
export const InkToolbarPenConfigurationControl = (_InkToolbarPenConfigurationControl as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarPenConfigurationControlProps> & RefAttributes<InkToolbarPenConfigurationControlRef>>));
export type InkToolbarPencilButtonProps = Omit<NativeInkToolbarPencilButtonProps, 'type'>;
export type InkToolbarPencilButtonRef = React.Component<NativeInkToolbarPencilButtonProps> & Readonly<NativeMethods>;
const _InkToolbarPencilButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarPencilButtonProps> & RefAttributes<InkToolbarPencilButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarPencilButtonProps>, ref: React.ForwardedRef<InkToolbarPencilButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarPencilButton' ref={ref} />);
export const InkToolbarPencilButton = (_InkToolbarPencilButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarPencilButtonProps> & RefAttributes<InkToolbarPencilButtonRef>>));
export type InkToolbarRulerButtonProps = Omit<NativeInkToolbarRulerButtonProps, 'type'>;
export type InkToolbarRulerButtonRef = React.Component<NativeInkToolbarRulerButtonProps> & Readonly<NativeMethods>;
const _InkToolbarRulerButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarRulerButtonProps> & RefAttributes<InkToolbarRulerButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarRulerButtonProps>, ref: React.ForwardedRef<InkToolbarRulerButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarRulerButton' ref={ref} />);
export const InkToolbarRulerButton = (_InkToolbarRulerButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarRulerButtonProps> & RefAttributes<InkToolbarRulerButtonRef>>));
export type InkToolbarStencilButtonProps = Omit<NativeInkToolbarStencilButtonProps, 'type'>;
export type InkToolbarStencilButtonRef = React.Component<NativeInkToolbarStencilButtonProps> & Readonly<NativeMethods>;
const _InkToolbarStencilButton : (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarStencilButtonProps> & RefAttributes<InkToolbarStencilButtonRef>>) = React.forwardRef((props: React.PropsWithChildren<InkToolbarStencilButtonProps>, ref: React.ForwardedRef<InkToolbarStencilButtonRef>) => <NativeXamlControl {...props} type='Windows.UI.Xaml.Controls.InkToolbarStencilButton' ref={ref} />);
export const InkToolbarStencilButton = (_InkToolbarStencilButton as (ForwardRefExoticComponent<React.PropsWithChildren<InkToolbarStencilButtonProps> & RefAttributes<InkToolbarStencilButtonRef>>));
export type ItemsPresenterProps = Omit<NativeItemsPresenterProps, 'type'>;