export interface CodexReleaseProcess { pid: number; name: string; ancestor: boolean; title?: string; startedAt?: string; } export interface CodexReleaseInspection { processes: CodexReleaseProcess[]; error?: string; errorCode?: string; } export declare const describeCodexReleaseProcess: (item: CodexReleaseProcess) => string; export declare const WINDOWS_RELEASE_PROCESS_QUERY: string; export declare function inspectCodexReleaseProcesses(options?: { platform?: NodeJS.Platform; pid?: number; uid?: number; run?: (command: string, args: string[]) => Promise<{ stdout: string; }>; }): Promise;