/** Creates an array of bijective base-26 numerals progressing from `'A'` up to, but not including, `end` @param end - The exclusive end of the range */ export default function range(end: string): string[]; /** Creates an array of bijective base-26 numerals progressing from `start` up to, but not including, `end` @param start - The inclusive start of the range @param end - The exclusive end of the range */ export default function range(start: string, end: string): string[];