import React, { PropsWithChildren } from "react";
import { IGatsbyCLIState, ILog } from "../../redux/types";
import { IRenderPageArgs } from "../../types";
interface IStoreStateContext {
    logs: IGatsbyCLIState;
    messages: Array<ILog>;
    pageTree: IRenderPageArgs | null;
}
declare const StoreStateContext: React.Context<IStoreStateContext>;
export declare const StoreStateProvider: React.FC<PropsWithChildren>;
export default StoreStateContext;
