/** * Device capability types */ export interface DeviceCapabilities { hasBackdropFilter: boolean; hasSVGFilters: boolean; hasGPU: boolean; hasGPUAcceleration: boolean; performanceTier: "high" | "medium" | "low"; prefersReducedMotion: boolean; prefersReducedTransparency: boolean; prefersContrast: "no-preference" | "more" | "less" | "custom"; isPointerDevice: boolean; isTouch: boolean; devicePixelRatio: number; connectionSpeed: "slow-2g" | "2g" | "3g" | "4g" | "5g" | "unknown"; colorGamut: "srgb" | "p3" | "rec2020"; hasHDR: boolean; hdr: boolean; } /** * Hook to detect device capabilities for progressive enhancement */ export declare function useDeviceCapabilities(): DeviceCapabilities; //# sourceMappingURL=use-device-capabilities.d.ts.map