import { UNIST } from 'unist'; import LaTeXCompiler from '../LaTeXCompiler'; export interface Converters { [key: string]: (this: LaTeXCompiler, node: UNIST.Node, parent?: UNIST.Parent) => UNIST.Node; } export { LaTeXCompiler }; declare const _default: Converters; export default _default;