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