/** * @type MarkupText: Document representing markup text. * * @property markup: The rendered HTML. * * @property source: The raw markup text. * */ export type MarkupText = { markup: string; source: string; } & { [key: string]: any; };