import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type MetaDto = { /** * The total count of subscriber IDs provided */ totalCount: number; /** * The count of successfully created subscriptions */ successful: number; /** * The count of failed subscription attempts */ failed: number; }; /** @internal */ export declare const MetaDto$inboundSchema: z.ZodType; export declare function metaDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=metadto.d.ts.map