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