import AbstractConjunction from './AbstractConjunction';
import ConditionType from './ConditionType';
/**
 * @export
 * @class AndConjunction
 */
export declare class AndConjunction extends AbstractConjunction {
    /**
     * Discriminator property for AbstractCondition
     * @type {string}
     * @memberof AndConjunction
     */
    readonly type: ConditionType;
    constructor(obj?: Partial<AndConjunction>);
}
export default AndConjunction;
