import type { AnyObject } from '@naturalcycles/js-lib/types'; import type { JsonSchema } from '../jSchema.js'; /** * Each row must be an object (current limitation). * * `additionalProperties` is set to `true`, cause it's safer. */ export declare function generateJsonSchemaFromData(rows: AnyObject[]): JsonSchema;