import Tokenizer from '../tokenizer'; /** * Tokenise a URL in text. * * @example * tokenizeURL(eat, 'http://foo.bar'); * * @property {boolean} notInLink * @property {Function} locator - URL locator. * @param {function(string)} eat - Eater. * @param {string} value - Rest of content. * @param {boolean?} [silent] - Whether this is a dry run. * @return {Node?|boolean} - `link` node. */ declare const tokenizeURL: Tokenizer; export default tokenizeURL;