import * as i_imports_path from "../fs_unrestricted_path/data"; export type Parameters_ = i_imports_path.Node_Path; export declare namespace Error_ { type path = i_imports_path.Node_Path; namespace type_ { type unknown_ = null; } type type_ = readonly ['unknown', type_.unknown_]; } export type Error_ = { readonly 'path': Error_.path; readonly 'type': Error_.type_; }; export type Result_ = Node_Type_; export declare namespace Node_Type_ { type does_not_exist = null; type file = null; type directory = null; } export type Node_Type_ = readonly ['does not exist', Node_Type_.does_not_exist] | readonly ['file', Node_Type_.file] | readonly ['directory', Node_Type_.directory]; export { Parameters_ as Parameters, Error_ as Error, Result_ as Result, Node_Type_ as Node_Type, };