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