import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AuthDto = { accessToken: string; }; /** @internal */ export declare const AuthDto$inboundSchema: z.ZodType; /** @internal */ export type AuthDto$Outbound = { accessToken: string; }; /** @internal */ export declare const AuthDto$outboundSchema: z.ZodType; export declare function authDtoToJSON(authDto: AuthDto): string; export declare function authDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=authdto.d.ts.map