import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type RemoveSubscriberResponseDto = { /** * Indicates whether the operation was acknowledged by the server */ acknowledged: boolean; /** * Status of the subscriber removal operation */ status: string; }; /** @internal */ export declare const RemoveSubscriberResponseDto$inboundSchema: z.ZodType; export declare function removeSubscriberResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=removesubscriberresponsedto.d.ts.map