import type { Platform } from "../device-manager.js"; import type { ToolContext } from "../tools/context.js"; export interface CommonArgs { deviceId?: string; platform: Platform; } /** * Extract `deviceId` and `platform` from raw tool args. Falls back to the * currently active platform when `platform` is omitted. * * Centralises a ~125-callsite pattern. */ export declare function parseCommonArgs(args: Record, ctx: ToolContext): CommonArgs; //# sourceMappingURL=parse-common-args.d.ts.map