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