/**
 * Checks if the character at the `start` position within `code` can be
 * a regular expression and returns the ending position of this regex, or
 * `start+1` if it not.
 *
 * NOTE: Ensure `start` points to a slash (this is not checked).
 *
 * @param code Text buffer
 * @param start Position of the a slash within `code`
 * @returns Position of the chararacter following the regex.
 */
declare function skipRegex(code: string, start: number): number;
export = skipRegex;
