import { LinearUnaryOperator } from '../graph.js'; import { PipedOperator } from '../types.js'; import { MultiSet } from '../multiset.js'; /** * Operator that negates the multiplicities in the input stream */ export declare class NegateOperator extends LinearUnaryOperator { inner(collection: MultiSet): MultiSet; } /** * Negates the multiplicities in the input stream */ export declare function negate(): PipedOperator;