/** @packageDocumentation * @module WidgetPanels */ import "./CursorOverlay.scss"; /** @internal */ export type CursorType = "nwse-resize" | "nesw-resize" | "ew-resize" | "ns-resize" | "grabbing"; /** Controls cursor type of the application. * I.e. when dragging a widget "grabbing" cursor should be displayed until user drops the widget. * @internal */ export declare function useCursor(): void; /** @internal */ export declare function getCursorClassName(type: CursorType): string; //# sourceMappingURL=CursorOverlay.d.ts.map