/** * Idea is to have a minimal spec that can be extended over time. * * Every valid file path must also be a valid RFC 3986 URI. */ /** * Validates a file path. * * @throws {Error} If the file path is invalid. */ export declare function validateFilePath(path: string): void; /** * */ export declare function isValidFilePath(path: string): boolean; //# sourceMappingURL=validate-file-path.d.ts.map