import type { TSESLint, TSESTree } from '@typescript-eslint/utils';
export declare const meta: {
    name: string;
    version: string;
};
export interface HtmlParserOptions extends TSESLint.Linter.ParserOptions {
    filePath?: string;
}
export declare const parseForESLint: (text: string, _options?: HtmlParserOptions) => TSESLint.Parser.ParseResult;
export declare const parse: (text: string, options?: HtmlParserOptions) => TSESTree.Program;
