import { IExpectationSchemaContext, TExpectationMetaTag, TExpectationOperatorLocation } from '../types';
import { ExpectationOperator } from '../models/operator';
export default class RemoveExpectationOperator<TContext extends IExpectationSchemaContext, TLocation extends TExpectationOperatorLocation = TExpectationOperatorLocation> extends ExpectationOperator<TContext, {
    [K in TLocation]: {
        $location: K;
        $path?: string;
        $jsonPath?: string;
    };
}[TLocation]> {
    get tags(): TExpectationMetaTag[];
    match(): boolean;
    manipulate<T extends TContext>(context: T): T;
}
//# sourceMappingURL=remove.operator.d.ts.map