import { CommandProps } from './types'; import { IpfsImageUploadResponse } from '../../types'; export declare const getSuggestionItems: ({ query, onError, ipfsImageUploadFn, editor, }: { query: string; onError?: (errorString: string) => void; ipfsImageUploadFn?: (file: File) => Promise; isConnected?: boolean; editor?: any; enableCollaboration?: boolean; disableInlineComment?: boolean; }) => ({ title: string; description: string; searchTerms: string[]; icon: import("react/jsx-runtime").JSX.Element; image: string; command: ({ editor, range }: CommandProps) => void; isDisabled: boolean; } | { title: string; description: string; searchTerms: string[]; icon: import("react/jsx-runtime").JSX.Element; image: string; command: ({ editor, range }: CommandProps) => void; isDisabled?: undefined; })[]; export declare const updateScrollView: (container: HTMLElement, item: HTMLElement) => void;