import { Directory } from './directory'; import { FileStructure } from './file-structure'; export declare type Item = { basename: string; directory?: Directory; fileStructure: FileStructure; name: string; path: string; url: string; delete(options?: ItemDeleteOptions): Promise; move(update: ItemMoveUpdate, options?: ItemDeleteOptions): Promise; }; export declare type ItemMoveUpdate = { newPath: string; oldPath?: string; }; export declare type ItemDeleteOptions = { isCopy?: boolean; isMove?: boolean; }; //# sourceMappingURL=item.d.ts.map