import { Command, CommandList } from './types'; import { Editor } from '@tiptap/core'; export declare function renderCommandListDefault({ t }: any): CommandList[]; export declare function useFilterCommandList(commandList: CommandList[], query: string, editor?: Editor): { commands: Command[]; name: string; title: string; }[];