/** * Resolves an existing path. Produces an error when path does not exist. * When provided a relative path, extends it using the current working directory. */ export declare const ExistingPath: Omit, "from" | "defaultValue"> & Omit<{ displayName: string; description: string; from(str: string): Promise; }, "from"> & import("../from").From; /** * Resolves to a directory if given one, and to a file's directory if file was given. * Fails when the directory or the given file does not exist. */ export declare const Directory: Omit, "from" | "defaultValue"> & Omit<{ displayName: string; description: string; from(str: string): Promise; }, "from"> & import("../from").From, "from" | "defaultValue"> & Omit<{ from(resolved: string): Promise; displayName: string; description: string; }, "from"> & import("../from").From; /** * Resolves to a path to an existing file */ export declare const File: Omit, "from" | "defaultValue"> & Omit<{ displayName: string; description: string; from(str: string): Promise; }, "from"> & import("../from").From, "from" | "defaultValue"> & Omit<{ from(resolved: string): Promise; displayName: string; description: string; }, "from"> & import("../from").From;