import { Type } from "@tsed/core"; import { JsonSchema } from "../domain/JsonSchema.js"; import { JsonSchemaOptions } from "../interfaces/JsonSchemaOptions.js"; export type GenericValue = Type | JsonSchema | String | Number | Boolean | Object | Date; export type GenericsMap = Record; export declare function getGenericsOptions(value: JsonSchema, options: JsonSchemaOptions): { generics: GenericsMap | undefined; mapper: string; };