///
import { VirtualFile } from './CafeReactType';
interface Props {
path: string;
file: VirtualFile;
download: (path: string) => Promise;
deleteFile: (path: string) => Promise;
backgroundColor: string;
}
export declare function CafeReactFsFile({ path, file, download, deleteFile, backgroundColor }: Props): JSX.Element;
export {};