import { ExecutionResult } from "graphql";
export declare type Variables = {
    [key: string]: unknown;
};
export declare type AssertFn<TData> = (result: ExecutionResult<TData>) => Error | undefined | Promise<Error | undefined>;
