import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type AWSSQSConfig = { /** * Optional. Custom AWS endpoint URL (e.g., for LocalStack or specific regions). */ endpoint?: string | undefined; /** * The URL of the SQS queue. */ queueUrl: string; }; /** @internal */ export declare const AWSSQSConfig$inboundSchema: z.ZodType; /** @internal */ export type AWSSQSConfig$Outbound = { endpoint?: string | undefined; queue_url: string; }; /** @internal */ export declare const AWSSQSConfig$outboundSchema: z.ZodType; export declare function awssqsConfigToJSON(awssqsConfig: AWSSQSConfig): string; export declare function awssqsConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=awssqsconfig.d.ts.map