import React from "react";
import type { ReactNode } from "react";
import type { EtherbaseConfig } from "./config";
export declare function EtherbaseProvider({ config, children, }: {
    config: EtherbaseConfig;
    children: ReactNode;
}): React.JSX.Element;
export declare function useEtherbaseContext(): {
    initialized: boolean;
};
