import { Dir, ForFileTree } from "./types"; import React from "react"; export interface FTree { dir: string; } export interface SingleFileProps extends ForFileTree { d: Dir; level?: number; onDrop: (source: string, target: string) => void; isOpenDropdownDir?: string; setIsOpenDropdownDir: (dir: string) => void; } export declare const SingleFile: React.FC;