/** * Returns a URL or a path with slash at the end * In production can be URL, absolute path, relative path * In development always will be an absolute path * In development can use `path` module functions for operations * * @param {(string|undefined)} homepage a valid url or pathname * @param {(string|undefined)} envPublicUrl a valid url or pathname * @param {boolean|undefined}isEnvDevelopment * @returns {string} */ declare function getPublicUrlOrPath(homepage?: string, envPublicUrl?: string, isEnvDevelopment?: boolean): string; export default getPublicUrlOrPath;