import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GCPPubSubConfig = { /** * The GCP project ID. */ projectId: string; /** * The Pub/Sub topic name. */ topic: string; /** * Optional. Custom endpoint URL (e.g., localhost:8085 for emulator). */ endpoint?: string | undefined; }; /** @internal */ export declare const GCPPubSubConfig$inboundSchema: z.ZodType; /** @internal */ export type GCPPubSubConfig$Outbound = { project_id: string; topic: string; endpoint?: string | undefined; }; /** @internal */ export declare const GCPPubSubConfig$outboundSchema: z.ZodType; export declare function gcpPubSubConfigToJSON(gcpPubSubConfig: GCPPubSubConfig): string; export declare function gcpPubSubConfigFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=gcppubsubconfig.d.ts.map