import { IExpectationMeta, IExpectationSchemaContext, 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(): IExpectationMeta['tags'];
    match(): Promise<boolean>;
    manipulate<T extends TContext>(context: T): Promise<T>;
}
//# sourceMappingURL=remove.operator.d.ts.map