import type { Parser } from './Parser.js'; interface Class { new (...args: any[]): T; } /** * Creates an instance of the parser only before using it. */ declare function createLazyParser>(ParserClass: Class

, ...args: any[]): P; export default createLazyParser; //# sourceMappingURL=createLazyParser.d.ts.map