import Tokenizer from '../tokenizer'; /** * Tokenise a definition. * * @example * var value = '[foo]: http://example.com "Example Domain"' * tokenizeDefinition(eat, value) * * @property {boolean} notInList * @property {boolean} notInBlock * @param {function(string)} eat - Eater. * @param {string} value - Rest of content. * @param {boolean?} [silent] - Whether this is a dry run. * @return {Node?|boolean} - `definition` node. */ declare const tokenizeDefinition: Tokenizer; export default tokenizeDefinition;