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