diff --git a/packages/components/src/range-control/types.ts b/packages/components/src/range-control/types.ts index f8ba457ab77f4d..721c5edf4c8bdb 100644 --- a/packages/components/src/range-control/types.ts +++ b/packages/components/src/range-control/types.ts @@ -290,39 +290,6 @@ export type UseControlledRangeValueArgs = { value: number | null; }; -export type UseDebouncedHoverInteractionArgs = { - /** - * A callback function invoked when the element is hidden. - * - * @default () => {} - */ - onHide?: () => void; - /** - * A callback function invoked when the mouse is moved out of the element. - * - * @default () => {} - */ - onMouseLeave?: MouseEventHandler< HTMLInputElement >; - /** - * A callback function invoked when the mouse is moved. - * - * @default () => {} - */ - onMouseMove?: MouseEventHandler< HTMLInputElement >; - /** - * A callback function invoked when the element is shown. - * - * @default () => {} - */ - onShow?: () => void; - /** - * Timeout before the element is shown or hidden. - * - * @default 300 - */ - timeout?: number; -}; - export type UseMarksArgs = NumericProps & { marks: RangeMarks; step: number;