import { z } from "@medusajs/framework/zod"; export type AdminGetReservationParamsType = z.infer; export declare const AdminGetReservationParams: z.ZodObject<{ fields: z.ZodOptional; }, "strip", z.ZodTypeAny, { fields?: string | undefined; }, { fields?: string | undefined; }>; export type AdminGetReservationsParamsType = z.infer; export declare const AdminGetReservationsParams: z.ZodObject<{ fields: z.ZodOptional; } & { offset: z.ZodEffects>, number, unknown>; limit: z.ZodEffects>, number, unknown>; order: z.ZodOptional | z.ZodDefault>; with_deleted: z.ZodEffects, boolean | undefined, unknown>; } & { q: z.ZodOptional; location_id: z.ZodOptional]>>; inventory_item_id: z.ZodOptional]>>; line_item_id: z.ZodOptional]>>; created_by: z.ZodOptional]>>; description: z.ZodOptional]>]>>; quantity: z.ZodOptional]>>; created_at: z.ZodOptional]>>; updated_at: z.ZodOptional]>>; deleted_at: z.ZodOptional]>>; }, "strip", z.ZodTypeAny, { offset: number; limit: number; order?: string | undefined; fields?: string | undefined; location_id?: string | string[] | undefined; created_by?: string | string[] | undefined; created_at?: any; updated_at?: any; deleted_at?: any; description?: any; with_deleted?: boolean | undefined; q?: string | undefined; quantity?: any; line_item_id?: string | string[] | undefined; inventory_item_id?: string | string[] | undefined; }, { order?: string | undefined; fields?: string | undefined; location_id?: string | string[] | undefined; created_by?: string | string[] | undefined; created_at?: any; updated_at?: any; deleted_at?: any; description?: any; offset?: unknown; limit?: unknown; with_deleted?: unknown; q?: string | undefined; quantity?: any; line_item_id?: string | string[] | undefined; inventory_item_id?: string | string[] | undefined; }>; export type AdminCreateReservationType = z.infer; export declare const AdminCreateReservation: z.ZodObject<{ line_item_id: z.ZodOptional>; location_id: z.ZodString; inventory_item_id: z.ZodString; quantity: z.ZodNumber; description: z.ZodOptional>; metadata: z.ZodOptional>>; }, "strict", z.ZodTypeAny, { location_id: string; quantity: number; inventory_item_id: string; metadata?: Record | null | undefined; description?: string | null | undefined; line_item_id?: string | null | undefined; }, { location_id: string; quantity: number; inventory_item_id: string; metadata?: Record | null | undefined; description?: string | null | undefined; line_item_id?: string | null | undefined; }>; export type AdminUpdateReservationType = z.infer; export declare const AdminUpdateReservation: z.ZodObject<{ location_id: z.ZodOptional; quantity: z.ZodOptional; description: z.ZodOptional>; metadata: z.ZodOptional>>; }, "strict", z.ZodTypeAny, { metadata?: Record | null | undefined; location_id?: string | undefined; description?: string | null | undefined; quantity?: number | undefined; }, { metadata?: Record | null | undefined; location_id?: string | undefined; description?: string | null | undefined; quantity?: number | undefined; }>; //# sourceMappingURL=validators.d.ts.map