import { z } from 'zod'; export declare const InitialDataSchema: z.ZodObject<{ discoveryUrl: z.ZodString; clientId: z.ZodString; user: z.ZodObject<{ id: z.ZodString; displayName: z.ZodString; handle: z.ZodString; domain: z.ZodString; teamId: z.ZodString; }, "strip", z.ZodTypeAny, { id: string; domain: string; displayName: string; handle: string; teamId: string; }, { id: string; domain: string; displayName: string; handle: string; teamId: string; }>; }, "strip", z.ZodTypeAny, { clientId: string; discoveryUrl: string; user: { id: string; domain: string; displayName: string; handle: string; teamId: string; }; }, { clientId: string; discoveryUrl: string; user: { id: string; domain: string; displayName: string; handle: string; teamId: string; }; }>; export type InitialData = z.infer; export declare const EnrollmentFlowDataSchema: z.ZodObject<{ handle: z.ZodType; orderUrl: z.ZodString; authorization: z.ZodObject<{ keyauth: z.ZodString; dpopChallenge: z.ZodObject<{ delegate: z.ZodType; url: z.ZodString; target: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; delegate: Uint8Array; target: string; }, { url: string; delegate: Uint8Array; target: string; }>; oidcChallenge: z.ZodObject<{ delegate: z.ZodType; url: z.ZodString; target: z.ZodString; }, "strip", z.ZodTypeAny, { url: string; delegate: Uint8Array; target: string; }, { url: string; delegate: Uint8Array; target: string; }>; }, "strip", z.ZodTypeAny, { keyauth: string; dpopChallenge: { url: string; delegate: Uint8Array; target: string; }; oidcChallenge: { url: string; delegate: Uint8Array; target: string; }; }, { keyauth: string; dpopChallenge: { url: string; delegate: Uint8Array; target: string; }; oidcChallenge: { url: string; delegate: Uint8Array; target: string; }; }>; nonce: z.ZodString; }, "strip", z.ZodTypeAny, { handle: Uint8Array; orderUrl: string; authorization: { keyauth: string; dpopChallenge: { url: string; delegate: Uint8Array; target: string; }; oidcChallenge: { url: string; delegate: Uint8Array; target: string; }; }; nonce: string; }, { handle: Uint8Array; orderUrl: string; authorization: { keyauth: string; dpopChallenge: { url: string; delegate: Uint8Array; target: string; }; oidcChallenge: { url: string; delegate: Uint8Array; target: string; }; }; nonce: string; }>; export type EnrollmentFlowData = z.infer; export type UnidentifiedEnrollmentFlowData = Omit; //# sourceMappingURL=E2EIStorage.schema.d.ts.map