import { boldCommand } from "./boldCommand"; import { codeCommand } from "./codeCommand"; import { headerCommand } from "./headerCommand"; import { imageCommand } from "./imageCommand"; import { italicCommand } from "./italicCommand"; import { strikethroughCommand } from "./strikethroughCommand"; import { linkCommand } from "./linkCommand"; import { orderedListCommand } from "./orderedCommand"; import { quoteCommand } from "./quoteCommand"; import { unorderedListCommand } from "./unorderedListCommand"; import { checkListCommand } from "./checkListCommand"; import { tabCommand } from "./tabCommand"; import { Command } from "../types"; declare const getDefaultCommands: () => Command[][]; export { boldCommand, codeCommand, headerCommand, imageCommand, italicCommand, strikethroughCommand, linkCommand, orderedListCommand, quoteCommand, unorderedListCommand, checkListCommand, tabCommand, getDefaultCommands, };