import { type RefObject } from "react"; import { type orientationType } from "../responsive"; type activationIndicatorStyles = { height?: number; left?: number; top?: number; width?: number; hasChanged?: boolean; }; export declare function useActivationIndicator({ rootRef, tabId, orientation, }: { rootRef: RefObject; tabId?: string | null; orientation: orientationType; }): activationIndicatorStyles; export {};