import { type CurrentPosition } from "../../store/RouteStore";
import { type PositionInput } from "../runtime/types";
/**
 * Converts the efp `CurrentPosition` class instance to a neutral
 * `PositionInput` for the runtime.
 *
 * `z` in CurrentPosition can be `number | string | undefined`; the runtime
 * expects `layer: string`. Non-finite `angle` becomes `undefined`.
 */
export declare function positionInput(position: CurrentPosition): PositionInput;
//# sourceMappingURL=positionInput.d.ts.map