import { NodeTypes } from './types'; import type { Position } from './types'; interface LineColPosition { line: number; column: number; } export type UnclosedNode = { type: NodeTypes; name: string; blockStartPosition: Position; }; export declare class LiquidHTMLASTParsingError extends SyntaxError { loc?: { start: LineColPosition; end: LineColPosition; }; unclosed: UnclosedNode | null; constructor(message: string, source: string, startIndex: number, endIndex: number, unclosed?: UnclosedNode); } export {};