import * as z from "zod/v4-mini"; export type FilePatch = { name?: string | null | undefined; version?: string | null | undefined; }; /** @internal */ export type FilePatch$Outbound = { name?: string | null | undefined; version?: string | null | undefined; }; /** @internal */ export declare const FilePatch$outboundSchema: z.ZodMiniType; export declare function filePatchToJSON(filePatch: FilePatch): string; //# sourceMappingURL=filepatch.d.ts.map