import { Editor } from '@tiptap/react'; /** * Props for the ListControls component * @interface ListControlsProps * @property {Editor} editor - TipTap editor instance */ interface ListControlsProps { editor: Editor; } export default function ListControls({ editor }: ListControlsProps): import("react/jsx-runtime").JSX.Element; export {};