/**
 * converts number into ordinal form (1st, 2nd, 3rd, 4th, ...)
 */
declare function ordinal(n: number): string;
export default ordinal;
