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 CreateComputeQuoteRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; computeQuoteRequest: components.ComputeQuoteRequest; }; export type CreateComputeQuoteResponse = components.ComputeQuote | components.ComputeErrorEnvelope; /** @internal */ export declare const CreateComputeQuoteRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateComputeQuoteRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; ComputeQuoteRequest: components.ComputeQuoteRequest$Outbound; }; /** @internal */ export declare const CreateComputeQuoteRequest$outboundSchema: z.ZodType; export declare function createComputeQuoteRequestToJSON(createComputeQuoteRequest: CreateComputeQuoteRequest): string; export declare function createComputeQuoteRequestFromJSON(jsonString: string): SafeParseResult; /** @internal */ export declare const CreateComputeQuoteResponse$inboundSchema: z.ZodType; /** @internal */ export type CreateComputeQuoteResponse$Outbound = components.ComputeQuote$Outbound | components.ComputeErrorEnvelope$Outbound; /** @internal */ export declare const CreateComputeQuoteResponse$outboundSchema: z.ZodType; export declare function createComputeQuoteResponseToJSON(createComputeQuoteResponse: CreateComputeQuoteResponse): string; export declare function createComputeQuoteResponseFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createcomputequote.d.ts.map