import type { AST as VAST } from 'vue-eslint-parser'; export type ParseResult = Pick | null; export type Parser = (filePath: string) => ParseResult; export declare function buildParserFromConfig(cwd: string): Parser;