/**
 * Converts a number to its Khmer numeral representation.
 * @param input - The number or numeric string to convert.
 * @returns The Khmer numeral representation of the input.
 */
export declare function ToKhmerNumber(input: number | string): string;
