import React from "react"; import { CooperAPI } from "../api"; import { ConfigInput } from "../types"; export declare type CooperContextType = { api: CooperAPI; config: ConfigInput; }; export declare const CooperContext: React.Context;