import type { NetworkInformation } from '@plyaz/types/api'; /** * Re-export fetchff's slow connection detection * Checks if user is on a slow network (2G/3G) * * @returns True if connection is slow * * @example * if (isSlowConnection()) { * console.log('User on slow connection'); * } */ export declare const isSlowConnection: () => boolean; /** * Check if Network Information API is supported * * @returns True if Network API is available */ export declare function isNetworkAPISupported(): boolean; /** * Get network connection object * * @returns Network connection or null */ export declare function getConnection(): NetworkInformation | null; //# sourceMappingURL=core.d.ts.map