/** * Converts a numeric value to Turkish words. * * @param {number | string | bigint} value - The numeric value to convert * @param {Object} [options] - Conversion options * @param {boolean} [options.dropSpaces=false] - Remove spaces for compound form * @returns {string} The number in Turkish words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format * * @example * toCardinal(21) // 'yirmi bir' * toCardinal(21, { dropSpaces: true }) // 'yirmibir' * toCardinal(1000) // 'bin' */ export function toCardinal(value: number | string | bigint, options?: { dropSpaces?: boolean | undefined; }): string; /** * Converts a numeric value to Turkish ordinal words. * * @param {number | string | bigint} value - The numeric value to convert (positive integer) * @returns {string} The number as ordinal words * @throws {TypeError} If value is not a valid numeric type * @throws {RangeError} If value is negative, zero, or has a decimal part * * @example * toOrdinal(1) // 'birinci' * toOrdinal(2) // 'ikinci' * toOrdinal(21) // 'yirmibirinci' */ export function toOrdinal(value: number | string | bigint): string; /** * Converts a numeric value to Turkish currency words (Turkish Lira). * * Uses lira and kuruş (100 kuruş = 1 lira). * * @param {number | string | bigint} value - The currency amount to convert * @returns {string} The amount in Turkish currency words * @throws {TypeError} If value is not a valid numeric type * @throws {Error} If value is not a valid number format * * @example * toCurrency(42) // 'kırk iki lira' * toCurrency(1.50) // 'bir lira elli kuruş' * toCurrency(-5) // 'eksi beş lira' */ export function toCurrency(value: number | string | bigint): string;