import { Ast } from '../ast'; import { ParseOptions, Type } from '../types'; import { JsonSchema } from './types'; interface Options { mapCustomType?: (ast: Ast) => JsonSchema | undefined; } export declare const astToJsonSchema: (ast: Ast, options?: Options) => JsonSchema; declare const _default: (schema: Type, parseOptions?: ParseOptions, schemaOptions?: Options) => JsonSchema; export default _default;