import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type Manual = { acceptedDate?: string | undefined; acceptedDomain?: string | undefined; acceptedIP?: string | undefined; acceptedUserAgent?: string | undefined; }; export type TermsOfServiceError = { token?: string | undefined; manual?: Manual | undefined; }; /** @internal */ export declare const Manual$inboundSchema: z.ZodType; /** @internal */ export type Manual$Outbound = { acceptedDate?: string | undefined; acceptedDomain?: string | undefined; acceptedIP?: string | undefined; acceptedUserAgent?: string | undefined; }; /** @internal */ export declare const Manual$outboundSchema: z.ZodType; export declare function manualToJSON(manual: Manual): string; export declare function manualFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const TermsOfServiceError$inboundSchema: z.ZodType; /** @internal */ export type TermsOfServiceError$Outbound = { token?: string | undefined; manual?: Manual$Outbound | undefined; }; /** @internal */ export declare const TermsOfServiceError$outboundSchema: z.ZodType; export declare function termsOfServiceErrorToJSON(termsOfServiceError: TermsOfServiceError): string; export declare function termsOfServiceErrorFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=termsofserviceerror.d.ts.map