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 SubscribersControllerGetSubscriberRequest = { /** * The identifier of the subscriber */ subscriberId: string; /** * A header for idempotency purposes */ idempotencyKey?: string | undefined; }; export type SubscribersControllerGetSubscriberResponse = { headers: { [k: string]: Array; }; result: components.SubscriberResponseDto; }; /** @internal */ export type SubscribersControllerGetSubscriberRequest$Outbound = { subscriberId: string; "idempotency-key"?: string | undefined; }; /** @internal */ export declare const SubscribersControllerGetSubscriberRequest$outboundSchema: z.ZodType; export declare function subscribersControllerGetSubscriberRequestToJSON(subscribersControllerGetSubscriberRequest: SubscribersControllerGetSubscriberRequest): string; /** @internal */ export declare const SubscribersControllerGetSubscriberResponse$inboundSchema: z.ZodType; export declare function subscribersControllerGetSubscriberResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=subscriberscontrollergetsubscriber.d.ts.map