/**
 *
 * @param s
 *
 * @internal
 */
declare function normalizeStr(s: string): {
    str: string;
    exp: number;
    negative: boolean;
};
export { normalizeStr };
