import { ParseRangeResult } from '../interfaces/option-parser'; /** * Options parser for custom tag */ export declare const OptionParser: { /** * Parse range expression * * * * @see https://regex101.com/r/w4KCwC/4 * * @static * @param {string} str * @returns {ParseRangeResult} */ parseRange(str: string): ParseRangeResult | null; };