import { IMarkup } from "@inweb/markup"; /** * Defines the type of the markup core. */ export type MarkupType = "Konva" | "Visualize"; export declare class MarkupFactory { static createMarkup(markupType?: MarkupType): IMarkup; }