/** * Reactive network online/offline store. * * @example * ```ts * import { network } from '@r2digisolutions/components'; * if (!network.online) showBanner(); * ``` */ declare class NetworkStore { #private; constructor(); get online(): boolean; get offline(): boolean; /** Force online/offline (stories / tests). Pass null to clear. */ setForced(value: boolean | null): void; get forced(): boolean | null; } export declare const network: NetworkStore; export {};