import { z } from 'zod'; /** Request payload for enrolling an organization */ export declare const OrgAuthEnrollRequestSchema: z.ZodObject<{ orgId: z.ZodString; publicKey: z.ZodString; }, z.core.$strip>; /** Response data from enrolling an organization */ export declare const OrgAuthEnrollDataSchema: z.ZodObject<{ orgId: z.ZodString; }, z.core.$strip>; /** Response data from getting enrollment status */ export declare const OrgAuthStatusDataSchema: z.ZodObject<{ publicKey: z.ZodNullable; }, z.core.$strip>; export type OrgAuthEnrollRequest = z.infer; export type OrgAuthEnrollData = z.infer; export type OrgAuthStatusData = z.infer; //# sourceMappingURL=types.d.ts.map