import * as ts from "typescript";
import { JSONSchema, ParserOptions } from "./core-parser";
export interface ParseSchemaOptions extends ParserOptions {
    name?: string;
}
export declare function parseSchemaFile(file: string, options?: ParseSchemaOptions): Promise<ts.Statement[]>;
export declare function parseSchema(schema: JSONSchema, options?: ParseSchemaOptions): Promise<ts.Statement[]>;
