/** * Converts a number to its English ordinal string representation. * * Handles the special cases for 11th, 12th, and 13th * (which end in "th" despite their last digit). * * @param value - The number to convert to ordinal form * @returns The ordinal string (e.g., "1st", "2nd", "3rd", "11th") * * @example * ```typescript * toOrdinal(1); // "1st" * toOrdinal(2); // "2nd" * toOrdinal(3); // "3rd" * toOrdinal(11); // "11th" * toOrdinal(21); // "21st" * toOrdinal(112); // "112th" * ``` */ export declare const toOrdinal: (value: number) => string;