import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * An encrypted value used to record acceptance of Moov's Terms of Service. */ export type TermsOfServiceToken = { token: string; }; /** @internal */ export declare const TermsOfServiceToken$inboundSchema: z.ZodType; /** @internal */ export type TermsOfServiceToken$Outbound = { token: string; }; /** @internal */ export declare const TermsOfServiceToken$outboundSchema: z.ZodType; export declare function termsOfServiceTokenToJSON(termsOfServiceToken: TermsOfServiceToken): string; export declare function termsOfServiceTokenFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=termsofservicetoken.d.ts.map