import type { AccordionProps } from '../../Accordion'; import type { AffixProps } from '../../Affix'; import type { BounceProps } from '../../Animation/Bounce'; import type { CollapseProps } from '../../Animation/Collapse'; import type { FadeProps } from '../../Animation/Fade'; import type { SlideProps } from '../../Animation/Slide'; import type { TransitionProps } from '../../Animation/Transition'; import type { AutoCompleteProps } from '../../AutoComplete'; import type { AvatarProps } from '../../Avatar'; import type { AvatarGroupProps } from '../../AvatarGroup'; import type { BadgeProps } from '../../Badge'; import type { BreadcrumbProps } from '../../Breadcrumb'; import type { ButtonProps } from '../../Button'; import type { ButtonGroupProps } from '../../ButtonGroup'; import type { ButtonToolbarProps } from '../../ButtonToolbar'; import type { CalendarProps } from '../../Calendar'; import type { CarouselProps } from '../../Carousel'; import type { CascadeTreeProps } from '../../CascadeTree'; import type { CascaderProps } from '../../Cascader'; import type { CardProps } from '../../Card'; import type { CardGroupProps } from '../../CardGroup'; import type { CheckPickerProps } from '../../CheckPicker'; import type { CheckTreeProps } from '../../CheckTree'; import type { CheckTreePickerProps } from '../../CheckTreePicker'; import type { CheckboxProps } from '../../Checkbox'; import type { CheckboxGroupProps } from '../../CheckboxGroup'; import type { ColProps } from '../../Col'; import type { ContainerProps } from '../../Container'; import type { ContentProps } from '../../Content'; import type { DateInputProps } from '../../DateInput'; import type { DatePickerProps } from '../../DatePicker'; import type { DateRangeInputProps } from '../../DateRangeInput'; import type { DateRangePickerProps } from '../../DateRangePicker'; import type { DividerProps } from '../../Divider'; import type { DrawerProps } from '../../Drawer'; import type { DropdownProps } from '../../Dropdown'; import type { FlexboxGridProps } from '../../FlexboxGrid'; import type { FooterProps } from '../../Footer'; import type { FormProps } from '../../Form'; import type { FormControlProps } from '../../FormControl'; import type { FormControlLabelProps } from '../../FormControlLabel'; import type { FormErrorMessageProps } from '../../FormErrorMessage'; import type { FormGroupProps } from '../../FormGroup'; import type { FormHelpTextProps } from '../../FormHelpText'; import type { FormStackProps } from '../../FormStack'; import type { GridProps } from '../../Grid'; import type { HeaderProps } from '../../Header'; import type { HeadingProps } from '../../Heading'; import type { HeadingGroupProps } from '../../HeadingGroup'; import type { HighlightProps } from '../../Highlight'; import type { IconButtonProps } from '../../IconButton'; import type { InlineEditProps } from '../../InlineEdit'; import type { InputProps } from '../../Input'; import type { InputGroupProps } from '../../InputGroup'; import type { NumberInputProps } from '../../NumberInput'; import type { InputPickerProps } from '../../InputPicker'; import type { KbdProps } from '../../Kbd'; import type { ImageProps } from '../../Image'; import type { LinkProps } from '../../Link'; import type { ListProps } from '../../List'; import type { LoaderProps } from '../../Loader'; import type { MaskedInputProps } from '../../MaskedInput'; import type { MessageProps } from '../../Message'; import type { ModalProps } from '../../Modal'; import type { MultiCascadeTreeProps } from '../../MultiCascadeTree'; import type { MultiCascaderProps } from '../../MultiCascader'; import type { NavProps } from '../../Nav'; import type { NavbarProps } from '../../Navbar'; import type { NotificationProps } from '../../Notification'; import type { PasswordInputProps } from '../../PasswordInput'; import type { PasswordStrengthMeterProps } from '../../PasswordStrengthMeter'; import type { PaginationProps } from '../../Pagination'; import type { PanelProps } from '../../Panel'; import type { PanelGroupProps } from '../../PanelGroup'; import type { PlaceholderGraphProps } from '../../Placeholder/PlaceholderGraph'; import type { PlaceholderGridProps } from '../../Placeholder/PlaceholderGrid'; import type { PlaceholderParagraphProps } from '../../Placeholder/PlaceholderParagraph'; import type { PopoverProps } from '../../Popover'; import type { ProgressCircleProps } from '../../ProgressCircle'; import type { ProgressProps } from '../../Progress'; import type { PinInputProps } from '../../PinInput'; import type { RadioProps } from '../../Radio'; import type { RadioGroupProps } from '../../RadioGroup'; import type { RadioTileProps } from '../../RadioTile'; import type { RadioTileGroupProps } from '../../RadioTileGroup'; import type { RangeSliderProps } from '../../RangeSlider'; import type { RateProps } from '../../Rate'; import type { RowProps } from '../../Row'; import type { SelectPickerProps } from '../../SelectPicker'; import type { SegmentedControlProps } from '../../SegmentedControl'; import type { SidebarProps } from '../../Sidebar'; import type { SidenavProps } from '../../Sidenav'; import type { SliderProps } from '../../Slider'; import type { StackProps } from '../../Stack'; import type { StepsProps } from '../../Steps'; import type { StatProps } from '../../Stat'; import type { StatGroupProps } from '../../StatGroup'; import type { TableProps } from '../../Table'; import type { TabsProps } from '../../Tabs'; import type { TagProps } from '../../Tag'; import type { TagGroupProps } from '../../TagGroup'; import type { TagInputProps } from '../../TagInput'; import type { TagPickerProps } from '../../TagPicker'; import type { TextProps } from '../../Text'; import type { TimePickerProps } from '../../TimePicker'; import type { TimeRangePickerProps } from '../../TimeRangePicker'; import type { TimelineProps } from '../../Timeline'; import type { ToggleProps } from '../../Toggle'; import type { TooltipProps } from '../../Tooltip'; import type { TreeProps } from '../../Tree'; import type { TreePickerProps } from '../../TreePicker'; import type { TextareaProps } from '../../Textarea'; import type { UploaderProps } from '../../Uploader'; import type { VisuallyHiddenProps } from '../../VisuallyHidden'; import type { WhisperProps } from '../../Whisper'; import type { SafeAnchorProps } from '../SafeAnchor'; import type { DialogProps } from '../../useDialog/Dialog'; interface ComponentProps { defaultProps: Partial; } export interface ReactSuiteComponents { Accordion: ComponentProps; Affix: ComponentProps; Bounce: ComponentProps; Collapse: ComponentProps; Fade: ComponentProps; Slide: ComponentProps; Transition: ComponentProps; AutoComplete: ComponentProps; Avatar: ComponentProps; AvatarGroup: ComponentProps; Badge: ComponentProps; Breadcrumb: ComponentProps; Button: ComponentProps; ButtonGroup: ComponentProps; ButtonToolbar: ComponentProps; Calendar: ComponentProps; Carousel: ComponentProps; CascadeTree: ComponentProps; Cascader: ComponentProps; Card: ComponentProps; CardGroup: ComponentProps; CheckPicker: ComponentProps; CheckTree: ComponentProps; CheckTreePicker: ComponentProps; Checkbox: ComponentProps; CheckboxGroup: ComponentProps; Col: ComponentProps; Container: ComponentProps; Content: ComponentProps; DateInput: ComponentProps; DatePicker: ComponentProps; DateRangeInput: ComponentProps; DateRangePicker: ComponentProps; Divider: ComponentProps; Drawer: ComponentProps; Dropdown: ComponentProps; Dialog: ComponentProps; FlexboxGrid: ComponentProps; Footer: ComponentProps; Form: ComponentProps; FormControl: ComponentProps; FormControlLabel: ComponentProps; FormErrorMessage: ComponentProps; FormGroup: ComponentProps; FormHelpText: ComponentProps; FormStack: ComponentProps; Grid: ComponentProps; Header: ComponentProps; Heading: ComponentProps; HeadingGroup: ComponentProps; Highlight: ComponentProps; IconButton: ComponentProps; InlineEdit: ComponentProps; Input: ComponentProps; InputGroup: ComponentProps; NumberInput: ComponentProps; InputPicker: ComponentProps; Image: ComponentProps; Kbd: ComponentProps; Link: ComponentProps; List: ComponentProps; Loader: ComponentProps; MaskedInput: ComponentProps; Message: ComponentProps; Modal: ComponentProps; MultiCascadeTree: ComponentProps; MultiCascader: ComponentProps; Nav: ComponentProps; Navbar: ComponentProps; Notification: ComponentProps; PasswordInput: ComponentProps; PasswordStrengthMeter: ComponentProps; Pagination: ComponentProps; Panel: ComponentProps; PanelGroup: ComponentProps; PlaceholderGraph: ComponentProps; PlaceholderGrid: ComponentProps; PlaceholderParagraph: ComponentProps; PinInput: ComponentProps; Popover: ComponentProps; Progress: ComponentProps; ProgressLine: ComponentProps; ProgressCircle: ComponentProps; Radio: ComponentProps; RadioGroup: ComponentProps; RadioTile: ComponentProps; RadioTileGroup: ComponentProps; RangeSlider: ComponentProps; Rate: ComponentProps; Row: ComponentProps; SelectPicker: ComponentProps; SegmentedControl: ComponentProps; Sidebar: ComponentProps; Sidenav: ComponentProps; Slider: ComponentProps; Stack: ComponentProps; Steps: ComponentProps; Stat: ComponentProps; StatGroup: ComponentProps; Table: ComponentProps; Tabs: ComponentProps; Tag: ComponentProps; TagGroup: ComponentProps; TagInput: ComponentProps; TagPicker: ComponentProps; Text: ComponentProps; TimePicker: ComponentProps; TimeRangePicker: ComponentProps; Timeline: ComponentProps; Toggle: ComponentProps; Tooltip: ComponentProps; Tree: ComponentProps; TreePicker: ComponentProps; Textarea: ComponentProps; Uploader: ComponentProps; VisuallyHidden: ComponentProps; Whisper: ComponentProps; SafeAnchor: ComponentProps; } export {};