import { z } from 'zod'; import type { NoExpandObject } from '../../../validation/no-expand.js'; import type { AliasedObjectSchema } from '../../../validation/zod-alias.js'; export declare const warehouseMutationPayloadSchema: z.ZodObject<{ referenceKey: z.ZodString; }, "strip", z.ZodTypeAny, { referenceKey: string; }, { referenceKey: string; }>; declare const minimalWarehouseSchemaWithoutAlias: z.ZodObject<{ referenceKey: z.ZodString; } & { id: z.ZodNumber; }, "strip", z.ZodTypeAny, { id: number; referenceKey: string; }, { id: number; referenceKey: string; }>; type MinimalWarehouseSchema = typeof minimalWarehouseSchemaWithoutAlias; export type MinimalWarehouseData = NoExpandObject>; export declare const minimalWarehouseSchema: AliasedObjectSchema; export {}; //# sourceMappingURL=warehouse-schema.d.ts.map