import type { GlobalContext, SchemaObject } from "../types.js"; export interface TransformSchemaMapOptions { path: string; ctx: GlobalContext; } export default function transformSchemaObjectMap(schemaObjMap: Record, { path, ctx }: TransformSchemaMapOptions): string;