import type { AgentSession } from "../platform/index.js"; import type { ParsedArgs } from "./router.js"; export interface PlatformSmokeOptions { rootDir?: string; title?: string; goal?: string; actor?: string; command?: string; argv?: string[]; flags?: Record; cwd?: string; } export interface PlatformSmokeResult { rootDir: string; sessionFile: string; artifactFile: string; workspaceRoot: string; session: AgentSession; } export declare function runPlatformSmoke(options?: PlatformSmokeOptions): Promise; export declare function platformSmokeCommand(args: ParsedArgs): Promise; //# sourceMappingURL=platform-smoke.d.ts.map