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 CreateVectorStoreRequest = { /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; createVectorStoreRequest: components.CreateVectorStoreRequest; }; /** @internal */ export declare const CreateVectorStoreRequest$inboundSchema: z.ZodType; /** @internal */ export type CreateVectorStoreRequest$Outbound = { "X-On-Behalf-Of"?: string | undefined; CreateVectorStoreRequest: components.CreateVectorStoreRequest$Outbound; }; /** @internal */ export declare const CreateVectorStoreRequest$outboundSchema: z.ZodType; export declare function createVectorStoreRequestToJSON(createVectorStoreRequest: CreateVectorStoreRequest): string; export declare function createVectorStoreRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=createvectorstore.d.ts.map