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