import type { Schema } from '../../../../../schema/index.js';
import type { SchemaCondition } from '../../condition.js';
export declare const transformBetweenCondition: (schema: Schema, condition: Extract<SchemaCondition, {
    between: unknown;
    value?: never;
}>) => SchemaCondition;
