import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetSubscriberNotificationsCountResponseDto = { /** * The count of notifications matching the filter */ count: number; /** * The filter applied */ filter: { [k: string]: any; }; }; /** @internal */ export declare const GetSubscriberNotificationsCountResponseDto$inboundSchema: z.ZodType; export declare function getSubscriberNotificationsCountResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getsubscribernotificationscountresponsedto.d.ts.map