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