import type { I18njs } from '@procore/core-i18n-js'; import type { TextEditorImageUploadHandlers } from '../TextEditor.types'; type TextEditorI18n = Pick; type RichTextEditorHandlerOptions = { companyId: number | string; projectId?: number | string; toolName: string; i18n: TextEditorI18n; fetcher?: typeof fetch; }; export declare const richTextEditorUploadHandler: ({ companyId, projectId, toolName, i18n, fetcher, }: RichTextEditorHandlerOptions) => TextEditorImageUploadHandlers["upload"]; export {};