/** Enum of the type of the FileFolder class. */
export declare enum FileFolderType {
    File = 0,
    Folder = 1
}
/** This class can be extended to a component. */
export declare abstract class FileFolder {
    selected: boolean;
    type: FileFolderType;
    position?: number;
    id?: string;
}
