import { Store } from "redux";
import { IMutationAction } from "../services";
/**
 * These are the deferred redux actions sent from api-runner-node
 * They may include a `resolve` prop (if they are createNode actions).
 * If so, we resolve the promise when we're done
 */
export declare const callRealApi: (event: IMutationAction, store?: Store) => void;
