/** * Converts string to an integer of the specified radix. * If radix is undefined or 0, a radix of 10 is used (unlike native parseInt which auto-detects). * Drop-in replacement for lodash/parseInt. */ export default function parseIntFn(string: string, radix?: number): number;