import { z } from 'zod'; export declare const manageNginxConfigSchema: z.ZodObject<{ action: z.ZodEnum<["get", "save"]>; site_name: z.ZodString; content: z.ZodOptional; }, "strip", z.ZodTypeAny, { site_name: string; action: "get" | "save"; content?: string | undefined; }, { site_name: string; action: "get" | "save"; content?: string | undefined; }>; export declare const saveFileSchema: z.ZodObject<{ path: z.ZodString; content: z.ZodString; }, "strip", z.ZodTypeAny, { path: string; content: string; }, { path: string; content: string; }>; export type ManageNginxConfigInput = z.infer; export type SaveFileInput = z.infer; export declare function handleManageNginxConfig(input: ManageNginxConfigInput): Promise; export declare function handleSaveFile(input: SaveFileInput): Promise; //# sourceMappingURL=manage-nginx-config.d.ts.map