import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; import { InboxNotificationDto } from "./inboxnotificationdto.js"; /** * The filter applied to the notifications */ export type Filter = {}; export type GetSubscriberNotificationsResponseDto = { /** * Array of notifications */ data: Array; /** * Indicates if there are more notifications available */ hasMore: boolean; /** * The filter applied to the notifications */ filter: Filter; }; /** @internal */ export declare const Filter$inboundSchema: z.ZodType; export declare function filterFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const GetSubscriberNotificationsResponseDto$inboundSchema: z.ZodType; export declare function getSubscriberNotificationsResponseDtoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getsubscribernotificationsresponsedto.d.ts.map