import { z } from "zod"; export declare const baseUpdateSchema: z.ZodObject<{ id: z.ZodString; eTag: z.ZodOptional; }, "strip", z.ZodTypeAny, { id: string; eTag?: string | undefined; }, { id: string; eTag?: string | undefined; }>; export type BaseUpdate = z.infer; export declare function getETagHeader(entity: Pick): { "If-Match": string; } | undefined; //# sourceMappingURL=base-update.d.ts.map