import { supported as nativeFileSystemSupported } from "browser-fs-access"; import { MIME_TYPES } from "@excalidraw/common"; type FILE_EXTENSION = Exclude; export declare const fileOpen: (opts: { extensions?: FILE_EXTENSION[]; description: string; multiple?: M; }) => Promise; export declare const fileSave: (blob: Blob | Promise, opts: { /** supply without the extension */ name: string; /** file extension */ extension: FILE_EXTENSION; mimeTypes?: string[]; description: string; /** existing FileSystemFileHandle */ fileHandle?: FileSystemFileHandle | null; }) => Promise; export { nativeFileSystemSupported };