import React from "react"; export interface FTree { dir: string; isFolder?: boolean; } export declare const FileTree: React.FC<{ schemas: FTree[]; onClick: (t: FTree) => void; onCopy: (t: FTree) => void; onPaste: (t: FTree) => void; onDelete: (t: FTree) => void; onAdd: (t: FTree) => void; onRename: (oldTree: FTree, newTree: FTree) => void; onMove: (source: FTree, target: FTree) => void; current?: string; copiedFile: string; schemasLabel?: string; }>;