import type { Tool } from '@wrongstack/core/types'; export interface PwshInput { command: string; workdir?: string | undefined; timeout_ms?: number | undefined; run_in_background?: boolean | undefined; background?: boolean | undefined; } export interface PwshOutput { output: string; exit_code: number | null; timed_out: boolean; pid?: number | null | undefined; job_id?: string | undefined; error?: string | undefined; } export declare const PWSH_TOOL_DESCRIPTION: string; export declare const PWSH_TOOL_USAGE_HINT: string; export declare const pwshTool: Tool; //# sourceMappingURL=pwsh.d.ts.map