import { Expression } from '../../api'; /** Returns true if an expression is a constant (ie doesn't reference something else) */ export declare function isConstantExpr(str: string | number | null | Expression): str is string | number; export declare function isNumericExpr(str: string | number | null | Expression): boolean; //# sourceMappingURL=expression.d.ts.map