import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type User = { authKeyId?: string | undefined; steamid?: string | undefined; }; /** @internal */ export declare const User$inboundSchema: z.ZodType; export declare function userFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=user.d.ts.map