type ShowPastLogsBehavior = 'show_logs_from_previous_launch' | 'only_show_after_recent_launch'; interface WatchOptions { projectDir: string; commandNames: string[]; exitAfterMs?: number; consoleOutputFormat: 'pretty' | 'json'; /** * What to do if no recent launch event is found in the logs: * - 'show_logs_from_previous_launch': Show all logs anyway (for `watch` command) * - 'only_show_after_recent_launch': Only show logs after finding a start event (for `run` command) */ showPastLogsBehavior?: ShowPastLogsBehavior; } export declare function watchProcess(options: WatchOptions): Promise; export {}; //# sourceMappingURL=watchProcess.d.ts.map