import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * The type of the destination. */ export declare const GetDestinationTypeSchemaType: { readonly Webhook: "webhook"; readonly AwsSqs: "aws_sqs"; readonly Rabbitmq: "rabbitmq"; readonly Hookdeck: "hookdeck"; readonly AwsKinesis: "aws_kinesis"; readonly AzureServicebus: "azure_servicebus"; readonly AwsS3: "aws_s3"; readonly GcpPubsub: "gcp_pubsub"; readonly Kafka: "kafka"; }; /** * The type of the destination. */ export type GetDestinationTypeSchemaType = ClosedEnum; export type GetDestinationTypeSchemaRequest = { /** * The type of the destination. */ type: GetDestinationTypeSchemaType; }; /** @internal */ export declare const GetDestinationTypeSchemaType$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetDestinationTypeSchemaType$outboundSchema: z.ZodNativeEnum; /** @internal */ export declare const GetDestinationTypeSchemaRequest$inboundSchema: z.ZodType; /** @internal */ export type GetDestinationTypeSchemaRequest$Outbound = { type: string; }; /** @internal */ export declare const GetDestinationTypeSchemaRequest$outboundSchema: z.ZodType; export declare function getDestinationTypeSchemaRequestToJSON(getDestinationTypeSchemaRequest: GetDestinationTypeSchemaRequest): string; export declare function getDestinationTypeSchemaRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getdestinationtypeschema.d.ts.map