import { type DReactionCore } from 'dreaction-client-core'; export interface NetworkingOptions { ignoreContentTypes?: RegExp; ignoreUrls?: RegExp; } declare const networking: (pluginConfig?: NetworkingOptions) => (dreaction: DReactionCore) => { onConnect: () => void; }; export default networking; //# sourceMappingURL=networking.d.ts.map