import * as z from "zod/v3";
import { Result as SafeParseResult } from "../types/fp.js";
import { AuthUser } from "./authuser.js";
import { AuthUserLimited } from "./authuserlimited.js";
import { SDKValidationError } from "./sdkvalidationerror.js";
export type GetAuthUserUser = AuthUser | AuthUserLimited;
/**
 * Successful response.
 */
export type GetAuthUserResponseBody = {
    user: AuthUser | AuthUserLimited;
};
/** @internal */
export declare const GetAuthUserUser$inboundSchema: z.ZodType<GetAuthUserUser, z.ZodTypeDef, unknown>;
export declare function getAuthUserUserFromJSON(jsonString: string): SafeParseResult<GetAuthUserUser, SDKValidationError>;
/** @internal */
export declare const GetAuthUserResponseBody$inboundSchema: z.ZodType<GetAuthUserResponseBody, z.ZodTypeDef, unknown>;
export declare function getAuthUserResponseBodyFromJSON(jsonString: string): SafeParseResult<GetAuthUserResponseBody, SDKValidationError>;
//# sourceMappingURL=getauthuserop.d.ts.map