import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The request for ending a Restriction on an Account. */ export type EndRestrictionRequestCreate = { /** * The reason to end the restriction. */ reason: string; }; /** @internal */ export declare const EndRestrictionRequestCreate$inboundSchema: z.ZodType; /** @internal */ export type EndRestrictionRequestCreate$Outbound = { reason: string; }; /** @internal */ export declare const EndRestrictionRequestCreate$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace EndRestrictionRequestCreate$ { /** @deprecated use `EndRestrictionRequestCreate$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `EndRestrictionRequestCreate$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `EndRestrictionRequestCreate$Outbound` instead. */ type Outbound = EndRestrictionRequestCreate$Outbound; } export declare function endRestrictionRequestCreateToJSON(endRestrictionRequestCreate: EndRestrictionRequestCreate): string; export declare function endRestrictionRequestCreateFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=endrestrictionrequestcreate.d.ts.map