import * as z from "zod/v3"; /** * Describes the request body of the /debug/{datasource}/user API call */ export type DebugUserRequest = { /** * Email ID of the user to get the status for */ email: string; }; /** @internal */ export type DebugUserRequest$Outbound = { email: string; }; /** @internal */ export declare const DebugUserRequest$outboundSchema: z.ZodType; export declare function debugUserRequestToJSON(debugUserRequest: DebugUserRequest): string; //# sourceMappingURL=debuguserrequest.d.ts.map