import type { CommandContext } from './context.js'; export declare function handleRouteAdd(ctx: CommandContext, pattern: string | undefined, target: string | undefined): void; interface RouteListOptions { json: boolean; } export declare function handleRouteList(ctx: CommandContext, opts?: RouteListOptions): void; export declare function handleRouteRemove(ctx: CommandContext, pattern: string | undefined): void; interface RouteTestOptions { json: boolean; } export declare function handleRouteTest(ctx: CommandContext, cwdArg: string | undefined, opts?: RouteTestOptions): void; export {};