import { JSONSchema } from "./types"; /** * Create a simple json schema for the given input data * @param data - data to get json schema for * @return schema */ export default function createSchemaOf(data: any): JSONSchema;