import z from 'zod'; /** * Schema for {@link RequiredUserId} documents. */ export declare const RequiredUserIdSchema: z.ZodObject<{ _id: z.ZodPipe, z.ZodTransform<`${string}-${string}-${string}-${string}-${string}`, string>>; userId: z.ZodPipe>; }, z.z.core.$strip>; /** * A document that has a `userId` that must be associated to be valid. */ export type RequiredUserId = z.infer; //# sourceMappingURL=RequiredUserId.d.ts.map