import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type GetExtractSchemaRequest = { schemaId: string; /** * Optional external end-user identifier forwarded by the API gateway. */ xOnBehalfOf?: string | undefined; }; /** @internal */ export declare const GetExtractSchemaRequest$inboundSchema: z.ZodType; /** @internal */ export type GetExtractSchemaRequest$Outbound = { schema_id: string; "X-On-Behalf-Of"?: string | undefined; }; /** @internal */ export declare const GetExtractSchemaRequest$outboundSchema: z.ZodType; export declare function getExtractSchemaRequestToJSON(getExtractSchemaRequest: GetExtractSchemaRequest): string; export declare function getExtractSchemaRequestFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=getextractschema.d.ts.map