import { ExpectationOperator } from '../models/operator';
import { IExpectationSchemaContext, IExpectationOperatorsSchema, TExpectationMetaTag, TExpectationOperatorLocation } from '../types';
export default class RootExpectationOperator<TContext extends IExpectationSchemaContext, TLocation extends TExpectationOperatorLocation = TExpectationOperatorLocation, TValue = void> extends ExpectationOperator<TContext, IExpectationOperatorsSchema<TContext, TLocation, TValue>> {
    compiled: ExpectationOperator<TContext, any> | null;
    get tags(): TExpectationMetaTag[];
    match(context: TContext): boolean;
    manipulate<T extends TContext>(context: T): T;
}
//# sourceMappingURL=root.operator.d.ts.map