import type { SchemaCondition } from '../../condition.js';
import type { ConditionExpression } from '../../types.js';
import type { ExpressionState } from '../types.js';
export declare const expressBetweenCondition: (condition: Extract<SchemaCondition, {
    between: unknown;
}>, prefix: string | undefined, state: ExpressionState) => ConditionExpression;
