import { z } from "zod"; export declare const createSpaceBlockSchema: z.ZodObject<{ functionSpaceId: z.ZodString; name: z.ZodString; programId: z.ZodOptional; supplierId: z.ZodOptional; currency: z.ZodOptional; netRateCents: z.ZodOptional; sellRateCents: z.ZodOptional; holdStartTime: z.ZodOptional; holdEndTime: z.ZodOptional; optionDate: z.ZodOptional; cutoffDate: z.ZodOptional; notes: z.ZodOptional; }, z.core.$strip>; export declare const setSpaceBlockSlotsSchema: z.ZodObject<{ slots: z.ZodArray; sellRateCentsOverride: z.ZodOptional; }, z.core.$strip>>; }, z.core.$strip>; export declare const spaceBlockPickupSchema: z.ZodObject<{ bookingId: z.ZodOptional; sessionId: z.ZodOptional; startDate: z.ZodString; endDate: z.ZodString; units: z.ZodDefault; }, z.core.$strip>; export declare const reverseSpaceBlockPickupSchema: z.ZodObject<{ pickupId: z.ZodOptional; sessionId: z.ZodOptional; }, z.core.$strip>; export type CreateSpaceBlockBody = z.infer; export type SetSpaceBlockSlotsBody = z.infer; export type SpaceBlockPickupBody = z.infer; export type ReverseSpaceBlockPickupBody = z.infer;