import { z } from 'zod'; export declare const carrierMutationPayloadSchema: z.ZodObject<{ key: z.ZodString; name: z.ZodString; trackingUrl: z.ZodOptional>; }, "strip", z.ZodTypeAny, { key: string; name: string; trackingUrl?: string | null | undefined; }, { key: string; name: string; trackingUrl?: string | null | undefined; }>; export type CarrierMutationPayload = z.infer; export declare const carrierSchema: z.ZodObject<{ key: z.ZodString; name: z.ZodString; trackingUrl: z.ZodOptional>; } & { id: z.ZodNumber; }, "strip", z.ZodTypeAny, { key: string; id: number; name: string; trackingUrl?: string | null | undefined; }, { key: string; id: number; name: string; trackingUrl?: string | null | undefined; }>; export type Carrier = z.infer; export declare const carrierCollectionSchema: import("../../../entity-definitions/collection.js").CollectionSchema>; } & { id: z.ZodNumber; }, "strip", z.ZodTypeAny, { key: string; id: number; name: string; trackingUrl?: string | null | undefined; }, { key: string; id: number; name: string; trackingUrl?: string | null | undefined; }>>; export type CarrierCollection = z.infer; //# sourceMappingURL=carrier-schema.d.ts.map