import { ParserAndEater } from '../../tokenize-factory'; /** * Find a possible link. * * @example * locateLink('foo ![bar'); // 4 * * @param {string} value - Value to search. * @param {number} fromIndex - Index to start searching at. * @return {number} - Location of possible link. */ export default function locateLink(parser: ParserAndEater, value: string, fromIndex: number): number;