/** * Parses a number from a string without any suprises. Strings that describe numbers (without any other characters involved) yield * `number`. All other combination of characters yield `undefined`. */ export declare const numberFromString: (str: string) => number | undefined;