import * as React from "react"; import type { vec } from "mafs"; type Props = { /** Pixel-space center of the handle (already transformed from graph coordinates). */ center: vec.Vector2; active: boolean; focused: boolean; /** * "horizontal" — wide pill with a 3×2 grip dot grid (exponential asymptote) * "vertical" — tall pill with a 2×3 grip dot grid (logarithm asymptote) */ orientation: "horizontal" | "vertical"; }; export declare function AsymptoteDragHandle(props: Props): React.JSX.Element; export {};