import { KooborContext } from "./KooborContext";
export interface GlobalContext {
    ethereum?: any;
    web3?: any;
    kooborContext?: KooborContext;
}
export declare const globalContext: GlobalContext;
export declare function throwIfInvalidWeb3Environment(): void;
export declare function throwIfInvalidKooborContext(): void;
