/**
 * Returns the nth ordinal representation of the given number.
 * @example `nth(1)` returns '1st'
 */
export declare function nth(n: number): string;
