/**
 * Return an array with a range from a string
 * @param str string with the form '1..6..2' or 'a..f'
 * @returns returns an array of strings
 */
export declare function rangeFromString(str: string): Array<number | string>;
