///
import { FsItem } from './CafeReactType';
interface Props {
path: string;
item: FsItem;
download: (path: string) => Promise;
enterDirectory: (name: string) => void;
onDeleteFile: (path: string) => Promise;
onDeleteDirectory: (path: string) => Promise;
backgroundColor: string;
}
export declare function CafeReactFsItem({ path, item, download, enterDirectory, onDeleteFile, onDeleteDirectory, backgroundColor, }: Props): JSX.Element | null;
export {};