import type { NumericOptions } from '../types/index'; /** * Check if the string contains only numbers. * * @param str - The string to check * @param options - Optional parameters to control validation behavior * @returns True if the string contains only numbers, false otherwise */ export default function isNumeric(str: string, options?: NumericOptions): boolean;