/** * Define a regex to validate a URL * * Discussion: https://gist.github.com/dperini/729294 * NOTE: This is identical to our standard URL regex with the exception that the protocol is optional. */ export declare const urlOptionalProtocolRegex: RegExp;