import { z } from "zod"; /** The platform supplies this signed target to system-invoked OAuth flow hooks. */ export declare const OAuthFlowContextSchema: z.ZodObject<{ appId: z.ZodString; channelId: z.ZodString; managerId: z.ZodString; authScope: z.ZodEnum<["channel", "manager"]>; key: z.ZodOptional; targetManagerId: z.ZodOptional; }, "strict", z.ZodTypeAny, { channelId: string; appId: string; managerId: string; authScope: "manager" | "channel"; key?: string | undefined; targetManagerId?: string | undefined; }, { channelId: string; appId: string; managerId: string; authScope: "manager" | "channel"; key?: string | undefined; targetManagerId?: string | undefined; }>; //# sourceMappingURL=context.d.ts.map