import * as z from "zod/v3"; export type User = { /** * An opaque user ID for the claimed authority (i.e., the actas param, or the origid if actas is not specified). */ userID?: string | undefined; /** * An opaque user ID for the authenticated user (ignores actas). */ origID?: string | undefined; }; /** @internal */ export type User$Outbound = { userID?: string | undefined; origID?: string | undefined; }; /** @internal */ export declare const User$outboundSchema: z.ZodType; export declare function userToJSON(user: User): string; //# sourceMappingURL=user.d.ts.map