import type { ExtendedEditor } from '../types/editor'; interface UseMarkdownInsertionOptions { editor: ExtendedEditor | null; onImageSourceSelect?: (file: File) => string | Promise; publicImagePathPrefix?: string; setIsUpdating: (value: boolean) => void; } export declare const useMarkdownInsertion: ({ editor, publicImagePathPrefix, setIsUpdating, }: UseMarkdownInsertionOptions) => { handleInsertMarkdown: (markdown: string, cursorOffset?: number) => Promise; }; export {}; //# sourceMappingURL=useMarkdownInsertion.d.ts.map