/** * Converts value to an integer suitable for use as the length of an array-like object. * @param value The value to process. * @returns Returns the converted integer. */ declare const toLength: (value: any) => number; export default toLength;