import type { AbsolutePosition, CalendarHeaderOrientation, CalendarSelection, ContentOrientation, HorizontalTransitionAnimation, IconMeta, IgrActiveStepChangedEventArgs, IgrActiveStepChangingEventArgs, IgrButton, IgrCheckbox, IgrDropdownItem, IgrExpansionPanel, IgrIconButton, IgrInput, IgrSelectItem, IgrSwitch, IgrTab, IgrTile, IgrTreeItem, PickerMode, PopoverPlacement, PopoverScrollStrategy, SliderTickLabelRotation, SliderTickOrientation, ToggleLabelPosition } from './components/index.js'; import type { IgrDockManagerPaneType, IgrDockingIndicatorPosition, IgrPaneActionBehavior, IgrPaneDragActionType, IgrResizerLocation, IgrSplitPaneOrientation, IgrUnpinnedLocation } from './dock-manager/index.js'; export type IgrDropdownItemComponentEventArgs = CustomEvent; export type IgrExpansionPanelComponentEventArgs = CustomEvent; export type IgrSelectItemComponentEventArgs = CustomEvent; export type IgrTabComponentEventArgs = CustomEvent; export type IgrTileComponentEventArgs = CustomEvent; export type IgrTreeItemComponentEventArgs = CustomEvent; export type IgrComponentBoolValueChangedEventArgs = CustomEvent; export type IgrComponentDataValueChangedEventArgs = CustomEvent; export type IgrComponentDateValueChangedEventArgs = CustomEvent; export type IgrComponentValueChangedEventArgs = CustomEvent; export type IgrNumberEventArgs = CustomEvent; export type IgrVoidEventArgs = CustomEvent; export type IgrCalendarFormatOptions = Pick; export type NumberFormatOptions = Intl.NumberFormatOptions; export type DockManagerPaneType = IgrDockManagerPaneType; export type SplitPaneOrientation = IgrSplitPaneOrientation; export type UnpinnedLocation = IgrUnpinnedLocation; export type PaneActionBehavior = IgrPaneActionBehavior; export type DockingIndicatorPosition = IgrDockingIndicatorPosition; export type PaneDragActionType = IgrPaneDragActionType; export type ResizerLocation = IgrResizerLocation; /** @deprecated use PopoverPlacement */ export type DropdownPlacement = PopoverPlacement; /** @deprecated use IconMeta */ export type IgrIconMeta = IconMeta; /** @deprecated use AbsolutePosition */ export type BaseAlertLikePosition = AbsolutePosition; /** @deprecated use CalendarSelection */ export type CalendarBaseSelection = CalendarSelection; /** @deprecated use ContentOrientation */ export type CalendarOrientation = ContentOrientation; /** @deprecated use ContentOrientation */ export type CardActionsOrientation = ContentOrientation; /** @deprecated use HorizontalTransitionAnimation */ export type CarouselAnimationType = HorizontalTransitionAnimation; /** @deprecated use ToggleLabelPosition */ export type CheckboxBaseLabelPosition = ToggleLabelPosition; /** @deprecated use CalendarHeaderOrientation */ export type DatePickerHeaderOrientation = CalendarHeaderOrientation; /** @deprecated use PickerMode */ export type DatePickerMode = PickerMode; /** @deprecated use ContentOrientation */ export type DatePickerOrientation = ContentOrientation; /** @deprecated use PopoverScrollStrategy */ export type DropdownScrollStrategy = PopoverScrollStrategy; /** @deprecated use ContentOrientation */ export type RadioGroupAlignment = ContentOrientation; /** @deprecated use ToggleLabelPosition */ export type RadioLabelPosition = ToggleLabelPosition; /** @deprecated use PopoverScrollStrategy */ export type SelectScrollStrategy = PopoverScrollStrategy; /** @deprecated use SliderTickOrientation */ export type SliderBaseTickOrientation = SliderTickOrientation; /** @deprecated use HorizontalTransitionAnimation */ export type StepperHorizontalAnimation = HorizontalTransitionAnimation; /** @deprecated use SliderTickLabelRotation */ export type TickLabelRotation = SliderTickLabelRotation; /** @deprecated use IgrActiveStepChangedEventArgs */ export type IgrActiveStepChangedArgsEventArgs = IgrActiveStepChangedEventArgs; /** @deprecated use IgrActiveStepChangingEventArgs */ export type IgrActiveStepChangingArgsEventArgs = IgrActiveStepChangingEventArgs; /** @deprecated use the appropriate IgrButton or IgrIconButton type */ export type IgrButtonBase = IgrButton | IgrIconButton; /** @deprecated use the appropriate IgrCheckbox or IgrSwitch type */ export type IgrCheckboxBase = IgrCheckbox | IgrSwitch; /** @deprecated use IgrInput */ export type IgrInputBase = IgrInput;