import React from "react";
type DevtoolsContextValue = {
    __devtools: boolean;
    httpUrl: string;
    wsUrl: string;
    ws: WebSocket | null;
};
export declare const DevToolsContext: React.Context<DevtoolsContextValue>;
type Props = React.PropsWithChildren<{
    __devtools?: boolean;
    url?: string | [httpUrl: string, wsUrl: string];
}>;
export declare const DevToolsContextProvider: React.FC<Props>;
export {};
//# sourceMappingURL=context.d.ts.map