import type { ESLint, Linter, AST } from "eslint";

export declare const meta: ESLint.ObjectMetaProperties["meta"];

export declare const parse: (text: string, options?: any) => AST.Program;
export declare const parseForESLint: (
  text: string,
  options?: any
) => Linter.ESLintParseResult;
