import * as z from "zod"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * When a connector has schema_support, a call can be made to retrieve a json schema that describes a downstream resource. */ export type SchemaSupport = { /** * Can a resource schema be retrieved for this connector? */ supported?: boolean | undefined; }; /** @internal */ export declare const SchemaSupport$inboundSchema: z.ZodType; /** @internal */ export type SchemaSupport$Outbound = { supported?: boolean | undefined; }; /** @internal */ export declare const SchemaSupport$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace SchemaSupport$ { /** @deprecated use `SchemaSupport$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `SchemaSupport$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `SchemaSupport$Outbound` instead. */ type Outbound = SchemaSupport$Outbound; } export declare function schemaSupportToJSON(schemaSupport: SchemaSupport): string; export declare function schemaSupportFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=schemasupport.d.ts.map