import type { MarkupElementProps } from "../markup-elem"; import { MSpanElement } from "./span"; export type MItalicProps = MarkupElementProps; export declare class MItalicElement extends MSpanElement { readonly kind = "M_ITALIC"; stringify(): string; }