import { Interfaces } from '@oclif/core'; import { inspectFlags } from '../flargs/inspect.js'; import { Confirm, RunnerConsole, RunnerLogs } from '../types/index.js'; export type InspectOptions = Partial>; export interface InspectResult { code: string; command: string; exitCode: number; failed: boolean; parseError?: Error; parsedStdout: unknown; stderr: string[]; stdout: string[]; } type InspectRunnerOptions = { confirm: Confirm; console: RunnerConsole; cwd?: string; env?: Record; logs?: RunnerLogs; }; export declare function runInspect(imageName: string, options: InspectOptions, executablePath: string, runnerOptions: InspectRunnerOptions): Promise; export {};