import { Editor, Extension } from '@tiptap/core'; import { Group } from './types'; interface SlashCommandOptions { getCommandGroups?: (options: { editor: Editor; presetGroups: Group[]; lang: string; }) => Group[]; } export declare const SlashCommand: Extension; export default SlashCommand;