import { type NumericLiteral, type PrefixUnaryExpression } from "@ttsc/factory";
/**
 * Numeric-literal helper that handles negative values via a leading
 * `MinusToken` prefix unary, matching how the TypeScript factory itself emits
 * negative numeric literals.
 */
export declare namespace ExpressionFactory {
    const number: (value: number) => NumericLiteral | PrefixUnaryExpression;
}
