/** * Converts a numeric value to Malaysian English words. * * @param {number | string | bigint} value - The numeric value to convert * @returns {string} The number in English words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format */ export function toCardinal(value: number | string | bigint): string; export function toOrdinal(value: any): string; export function toCurrency(value: any, options: any): string;