import { Ast, ObjectAst } from './ast'; import { Key, ParseOptions, Type } from './types'; export declare const makePartial: (ast: ObjectAst, recursive: boolean) => ObjectAst; export declare function parse(key: Key, schema: Type, options: ParseOptions): Ast;