import * as p_ci from 'pareto-core/dist/interface/command'; import * as p_qi from 'pareto-core/dist/interface/query'; import * as resources from "../resources"; export declare namespace commands { /** * uses a directory content representation to write files in a directory structure */ type write_directory_content = p_ci.Command_Procedure; } export declare namespace queries { /** * creates a tree structure representing the directory structure, including file contents */ type read_directory_content = p_qi.Query_Function; /** * creates a tree structure representing the directory structure, excluding file contents */ type read_directory_structure = p_qi.Query_Function; }