import AbstractLogicalNode from './AbstractLogicalNode';
export default class And extends AbstractLogicalNode {
    readonly name = "and";
}
