import { IDiagnostic, IParserASTResult } from '@stoplight/types'; import { IJsonASTNode, IParseOptions, JsonParserResult } from './types'; export declare const parseWithPointers: (value: string, options?: IParseOptions) => JsonParserResult; export declare function parseTree(text: string, errors: IDiagnostic[] | undefined, options: IParseOptions): IParserASTResult;