import type { InlineNode } from "../../doc/types.js";
import type { PasteHook } from "./types.js";
/**
 * An extension to handle pasting / dropping from File.
 */
export declare const filePaste: (handlerByMime: Record<string, (file: File) => InlineNode>) => PasteHook;
