import { z } from 'zod'; /** User information and state for auth flow completion. */ export interface AuthFlowRequest { state: string; userInfo: { uid: string; signinProvider: string; email: string; firstName?: string; lastName?: string; fullName?: string; avatar?: string; }; } /** One-time authorization code response. */ export interface AuthFlowResponse { code: string; } /** Validates auth flow response structure. */ export declare const AuthFlowResponseSchema: z.ZodObject<{ code: z.ZodString; }, "strip", z.ZodTypeAny, { code: string; }, { code: string; }>; //# sourceMappingURL=authFlowDto.d.ts.map