/// <reference types="react" />
declare type FetchContextTypes = {
    url?: string;
    options?: RequestInit | undefined;
    graphql?: boolean;
};
export declare const FetchContext: import("react").Context<FetchContextTypes>;
export default FetchContext;
