export type JsonSchema = Record; export declare function extendExampleSchema(schema: JsonSchema, active?: Set): JsonSchema; /** * Generates a synthetic example value from a JSON Schema via json-schema-faker. * Fails soft: circular or otherwise ungenerable schemas resolve to `undefined` * rather than throwing/rejecting, since callers render "no example" instead of * crashing. */ export declare function generateSchemaExample(schema: JsonSchema): Promise;