import { z } from 'zod'; export declare const AuthRequiredBranchSchema: z.ZodObject<{ type: z.ZodLiteral<"auth_required">; provider: z.ZodString; message: z.ZodString; url: z.ZodOptional; }, z.core.$strip>; export type AuthRequiredBranch = z.infer; export declare const AuthRequiredSchema: z.ZodObject<{ type: z.ZodLiteral<"auth_required">; provider: z.ZodString; message: z.ZodString; url: z.ZodString; flow: z.ZodOptional; instructions: z.ZodString; user_code: z.ZodOptional; expires_in: z.ZodOptional; accountId: z.ZodOptional; }, z.core.$strip>; export type AuthRequired = z.infer;