/** * Kill Relative Velocity - Match velocity with target */ import type { KosConnection } from '../../../transport/kos-connection.js'; import { type ManeuverResult } from '../shared.js'; /** * Create a maneuver node to kill relative velocity with the target. * After executing this maneuver, relative velocity with target should be ~0 m/s. * Requires a target to be set first. * * @param conn kOS connection * @param timeRef When to execute: 'CLOSEST_APPROACH', 'X_FROM_NOW' */ export declare function killRelativeVelocity(conn: KosConnection, timeRef?: string): Promise; //# sourceMappingURL=kill-rel-vel.d.ts.map