/** * Utility for converting runtime JavaScript objects to JSON Schema * Used for dynamic output schema generation in CDK connectors * * This implementation uses the generate-schema library to convert raw JSON * responses into valid JSON Schema representations, matching the behavior * of the legacy connector framework. */ export declare class JsonSchemaIntrospector { /** * Introspects a JavaScript object and generates a JSON Schema representation * * @param obj - The object to introspect * @returns A JSON Schema object describing the structure */ static introspectToJsonSchema(obj: any): any; } //# sourceMappingURL=JsonSchemaIntrospector.d.ts.map