export declare enum Direction { top = "top", right = "right", bottom = "bottom", left = "left", topRight = "topRight", bottomRight = "bottomRight", bottomLeft = "bottomLeft", topLeft = "topLeft" } export declare function getMouseIcon(direction: Direction, transform: string): { sizeSvg: string; rotateSvg: string; }; export declare const setCursor: (svg: string) => string;