ts • Lines: 8import type { KatexOptions } from 'katex';
import type { MarkedExtension } from 'marked';
export interface MarkedKatexOptions extends KatexOptions {
nonStandard?: boolean
}
export default function markedKatex(options?: MarkedKatexOptions): MarkedExtension;