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