import { ValueExpression, BetweenExpressionTemplate } from './index.js'; /** * Creates a BETWEEN expression template. Lower and upper bounds are *inclusive*. */ declare function between(lowerBound: ValueExpression, upperBound: ValueExpression): BetweenExpressionTemplate; export { between };