import { ConditionExpressionTemplate, LogicalExpression } from './index.js'; /** * Combines multiple condition expressions using the logical AND operator. */ declare function and(firstCondition: ConditionExpressionTemplate, secondCondition: ConditionExpressionTemplate, ...additionalConditions: ConditionExpressionTemplate[]): LogicalExpression; export { and };