import type { Program } from 'estree'; import type { Context } from '../types'; import type { AcornOptions } from './types'; export declare function parse(programStr: string, context: Context, options?: Partial, throwOnError?: boolean): Program | null;