import type { CompletedFile, CompletedFileWithKey } from "./types/completed"; declare const setCompletedFile: (fileKey: string, file: CompletedFile) => void; declare const getCompletedFile: (fileKey?: string) => CompletedFile | CompletedFileWithKey | undefined; declare const clearCompletedFiles: () => void; export { clearCompletedFiles, getCompletedFile, setCompletedFile };