/** * Checks if a validated path matches a given path * @param {string} validationPath the validated path * @param {string} path the path to compare against * @returns {boolean} */ export default function hasPathMatched(validationPath: string, path: string): boolean;