import * as types from '../.types'; /** * Create a directory tree * @param tree Tree structure that needs to create * @param container Where to place the tree */ export declare function create(tree: types.Tree.Write, container: string): Promise; export declare namespace create { const async: typeof create; } export default create;