import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import * as components from "../components/index.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubscribersControllerGetSubscriberNotificationsCountRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * Array of filter objects (max 30) to count notifications by different criteria */ filters: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersControllerGetSubscriberNotificationsCountResponse = { headers: { [k: string]: Array; }; result: Array; }; /** @internal */ export type SubscribersControllerGetSubscriberNotificationsCountRequest$Outbound = { subscriberId: string; filters: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerGetSubscriberNotificationsCountRequest$outboundSchema: z.ZodType; export declare function subscribersControllerGetSubscriberNotificationsCountRequestToJSON(subscribersControllerGetSubscriberNotificationsCountRequest: SubscribersControllerGetSubscriberNotificationsCountRequest): string; /** @internal */ export declare const SubscribersControllerGetSubscriberNotificationsCountResponse$inboundSchema: z.ZodType; export declare function subscribersControllerGetSubscriberNotificationsCountResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollergetsubscribernotificationscount.d.ts.map