import * as t from '@babel/types'; /** * Given an expression, return true if it is a number literal * @param expr - The expression to check * @returns True if the expression is a number literal, false otherwise */ export declare function isNumberLiteral(expr: t.Expression): boolean;