export type StaticLiteral = string | number | boolean | null; export type StaticExpressionResult = { static: true; value: StaticLiteral; } | { static: false; }; /** * Uses TypeScript's parser instead of string heuristics so identifiers such as * `primary` are never mistaken for the literal string `"primary"`. */ export declare function evaluateStaticExpression(expression: string): StaticExpressionResult; //# sourceMappingURL=static-expression.d.ts.map