import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type SubscribersControllerDeleteNotificationRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * The identifier of the notification */ notificationId: string; /** * Context keys for filtering */ contextKeys?: Array | undefined; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersControllerDeleteNotificationResponse = { headers: { [k: string]: Array; }; }; /** @internal */ export type SubscribersControllerDeleteNotificationRequest$Outbound = { subscriberId: string; notificationId: string; contextKeys?: Array | undefined; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerDeleteNotificationRequest$outboundSchema: z.ZodType; export declare function subscribersControllerDeleteNotificationRequestToJSON(subscribersControllerDeleteNotificationRequest: SubscribersControllerDeleteNotificationRequest): string; /** @internal */ export declare const SubscribersControllerDeleteNotificationResponse$inboundSchema: z.ZodType; export declare function subscribersControllerDeleteNotificationResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollerdeletenotification.d.ts.map