export declare enum FolderTreeType {
    DIR = "DIR",
    IMG = "IMG",
    VID = "VID",
    TXT = "TXT",
    GIF = "GIF",
    OTH = "OTH",
    PDF = "PDF",
    CODE = "CODE",
    JS = "JS",
    HTML = "HTML",
    CSS = "CSS",
    JAVA = "JAVA",
    PHP = "PHP",
    FONT = "FONT"
}
export interface FolderTree {
    id: string;
    name: string;
    path: string;
    type: FolderTreeType;
    children?: FolderTree[];
    state: boolean;
}
