import type { SourceCode } from "eslint"; import type { JSONProgram } from "./ast"; export declare function parseForESLint(code: string, options?: any): { ast: JSONProgram; visitorKeys: SourceCode.VisitorKeys; services: { isJSON: boolean; }; };