import { boldCommand } from "./boldCommand"; import { italicCommand } from "./italicCommand"; import { strikeThroughCommand } from "./strikeThroughCommand"; import { CommandGroup } from "../types"; import { headerCommand } from "./headerCommand"; import { linkCommand } from "./linkCommand"; import { quoteCommand } from "./quoteCommand"; import { codeCommand } from "./codeCommand"; import { imageCommand } from "./imageCommand"; import { checkedListCommand, orderedListCommand, unorderedListCommand } from "./listCommands"; import { tableCommand } from './tableCommand'; declare const getDefaultCommands: () => CommandGroup[]; export { boldCommand, italicCommand, strikeThroughCommand, CommandGroup, headerCommand, linkCommand, quoteCommand, codeCommand, imageCommand, checkedListCommand, orderedListCommand, unorderedListCommand, tableCommand, getDefaultCommands };