import type { Program } from 'estree'; import type { Context } from '../..'; import type { AcornOptions, Parser } from '../types'; export declare class FullJSParser implements Parser { parse(programStr: string, context: Context, options?: Partial, throwOnError?: boolean): Program | null; validate(_ast: Program, _context: Context, _throwOnError: boolean): boolean; toString(): string; }