import type { ReactotronCore } from "reactotron-core-client";
export interface NetworkingOptions {
    ignoreContentTypes?: RegExp;
    ignoreUrls?: RegExp;
}
declare const networking: (pluginConfig?: NetworkingOptions) => (reactotron: ReactotronCore) => {
    onConnect: () => void;
};
export default networking;
