import React from "react"; import { ColorInput } from "./color.js"; type RectProps = React.SVGProps<"rect">; export interface CursorProps { height: RectProps["height"]; width: RectProps["height"]; x?: RectProps["x"]; y?: RectProps["y"]; fill: ColorInput; } export declare const Cursor: React.FunctionComponent; export {}; //# sourceMappingURL=Cursor.d.ts.map