import * as z from "zod/v3"; export type SnoozeSubscriberNotificationDto = { /** * The date and time until which the notification should be snoozed */ snoozeUntil: Date; }; /** @internal */ export type SnoozeSubscriberNotificationDto$Outbound = { snoozeUntil: string; }; /** @internal */ export declare const SnoozeSubscriberNotificationDto$outboundSchema: z.ZodType; export declare function snoozeSubscriberNotificationDtoToJSON(snoozeSubscriberNotificationDto: SnoozeSubscriberNotificationDto): string; //# sourceMappingURL=snoozesubscribernotificationdto.d.ts.map