import { Query } from '../utils/Types';
export declare const toBeQueriedWith: (query: jest.Mock, expected: Query) => jest.CustomMatcherResult;
declare global {
    namespace jest {
        interface Matchers<R, T> {
            toBeQueriedWith(expected: Query): R;
        }
    }
}
