import type { AlgorithmNode } from 'ecmarkdown';
export type AlgorithmElementWithTree = HTMLElement & {
    ecmarkdownTree: AlgorithmNode | null;
    originalHtml: string;
};
