/**
 * Returns "nth" of number (1 = "st", 2 = "nd", 3 = "rd", 4..10 = "th", ...)
 */
declare function nth(i: number): string;
export default nth;
