import type { TableSchema } from "@createdreamtech/datalog"; declare type JSONTypes = "array" | "number" | "string" | "object" | "boolean"; interface JsonTableSchema { [key: string]: { type: JSONTypes; }; } export declare const toDatalogSchema: (jsonBasedSchema: JsonTableSchema) => TableSchema; export declare const fromDatalogSchema: (schema: TableSchema) => { [key: string]: "string" | "number" | "boolean" | "object" | "array"; }; export {};