import Tokenizer from '../tokenizer'; /** * Tokenise a URL in carets. * * @example * tokenizeAutoLink(eat, '') * * @property {boolean} notInLink * @property {Function} locator - Auto-link 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 tokenizeAutoLink: Tokenizer; export default tokenizeAutoLink;