import type { Options as AcornOptions } from 'acorn'; import type { Program } from 'estree'; import { SourceParser } from '..'; import type { Context } from '../../..'; export declare class SourceTypedParser extends SourceParser { parse(programStr: string, context: Context, options?: Partial, throwOnError?: boolean): Program | null; toString(): string; }