import { z } from "zod"; export declare const GetConfigArgsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare const SetConfigValueArgsSchema: z.ZodObject<{ key: z.ZodString; value: z.ZodAny; }, "strip", z.ZodTypeAny, { key: string; value?: any; }, { key: string; value?: any; }>; export declare const ListProcessesArgsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare const StartProcessArgsSchema: z.ZodObject<{ command: z.ZodString; timeout_ms: z.ZodNumber; shell: z.ZodOptional; }, "strip", z.ZodTypeAny, { command: string; timeout_ms: number; shell?: string | undefined; }, { command: string; timeout_ms: number; shell?: string | undefined; }>; export declare const ReadProcessOutputArgsSchema: z.ZodObject<{ pid: z.ZodNumber; timeout_ms: z.ZodOptional; }, "strip", z.ZodTypeAny, { pid: number; timeout_ms?: number | undefined; }, { pid: number; timeout_ms?: number | undefined; }>; export declare const ForceTerminateArgsSchema: z.ZodObject<{ pid: z.ZodNumber; }, "strip", z.ZodTypeAny, { pid: number; }, { pid: number; }>; export declare const ListSessionsArgsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare const KillProcessArgsSchema: z.ZodObject<{ pid: z.ZodNumber; }, "strip", z.ZodTypeAny, { pid: number; }, { pid: number; }>; export declare const ReadFileArgsSchema: z.ZodObject<{ path: z.ZodString; isUrl: z.ZodDefault>; offset: z.ZodDefault>; length: z.ZodDefault>; }, "strip", z.ZodTypeAny, { length: number; path: string; isUrl: boolean; offset: number; }, { path: string; length?: number | undefined; isUrl?: boolean | undefined; offset?: number | undefined; }>; export declare const ReadMultipleFilesArgsSchema: z.ZodObject<{ paths: z.ZodArray; }, "strip", z.ZodTypeAny, { paths: string[]; }, { paths: string[]; }>; export declare const WriteFileArgsSchema: z.ZodObject<{ path: z.ZodString; content: z.ZodString; mode: z.ZodDefault>; }, "strip", z.ZodTypeAny, { path: string; content: string; mode: "rewrite" | "append"; }, { path: string; content: string; mode?: "rewrite" | "append" | undefined; }>; export declare const CreateDirectoryArgsSchema: z.ZodObject<{ path: z.ZodString; }, "strip", z.ZodTypeAny, { path: string; }, { path: string; }>; export declare const ListDirectoryArgsSchema: z.ZodObject<{ path: z.ZodString; }, "strip", z.ZodTypeAny, { path: string; }, { path: string; }>; export declare const MoveFileArgsSchema: z.ZodObject<{ source: z.ZodString; destination: z.ZodString; }, "strip", z.ZodTypeAny, { source: string; destination: string; }, { source: string; destination: string; }>; export declare const GetFileInfoArgsSchema: z.ZodObject<{ path: z.ZodString; }, "strip", z.ZodTypeAny, { path: string; }, { path: string; }>; export declare const EditBlockArgsSchema: z.ZodObject<{ file_path: z.ZodString; old_string: z.ZodString; new_string: z.ZodString; expected_replacements: z.ZodDefault>; }, "strip", z.ZodTypeAny, { file_path: string; old_string: string; new_string: string; expected_replacements: number; }, { file_path: string; old_string: string; new_string: string; expected_replacements?: number | undefined; }>; export declare const InteractWithProcessArgsSchema: z.ZodObject<{ pid: z.ZodNumber; input: z.ZodString; timeout_ms: z.ZodOptional; wait_for_prompt: z.ZodOptional; }, "strip", z.ZodTypeAny, { pid: number; input: string; timeout_ms?: number | undefined; wait_for_prompt?: boolean | undefined; }, { pid: number; input: string; timeout_ms?: number | undefined; wait_for_prompt?: boolean | undefined; }>; export declare const GetUsageStatsArgsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare const GiveFeedbackArgsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>; export declare const StartSearchArgsSchema: z.ZodObject<{ path: z.ZodString; pattern: z.ZodString; searchType: z.ZodDefault>; filePattern: z.ZodOptional; ignoreCase: z.ZodDefault>; maxResults: z.ZodOptional; includeHidden: z.ZodDefault>; contextLines: z.ZodDefault>; timeout_ms: z.ZodOptional; earlyTermination: z.ZodOptional; }, "strip", z.ZodTypeAny, { path: string; pattern: string; searchType: "content" | "files"; ignoreCase: boolean; includeHidden: boolean; contextLines: number; timeout_ms?: number | undefined; filePattern?: string | undefined; maxResults?: number | undefined; earlyTermination?: boolean | undefined; }, { path: string; pattern: string; timeout_ms?: number | undefined; searchType?: "content" | "files" | undefined; filePattern?: string | undefined; ignoreCase?: boolean | undefined; maxResults?: number | undefined; includeHidden?: boolean | undefined; contextLines?: number | undefined; earlyTermination?: boolean | undefined; }>; export declare const GetMoreSearchResultsArgsSchema: z.ZodObject<{ sessionId: z.ZodString; offset: z.ZodDefault>; length: z.ZodDefault>; }, "strip", z.ZodTypeAny, { length: number; offset: number; sessionId: string; }, { sessionId: string; length?: number | undefined; offset?: number | undefined; }>; export declare const StopSearchArgsSchema: z.ZodObject<{ sessionId: z.ZodString; }, "strip", z.ZodTypeAny, { sessionId: string; }, { sessionId: string; }>; export declare const ListSearchesArgsSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;