import * as detectGpu from 'detect-gpu'; declare global { interface Window { GPUInfo: detectGpu.TierResult; } } export declare function useGpuFeatures(): { hasCheckedGpu: boolean; canGpuRender: boolean; isGpuEnabled: boolean; shouldRender: boolean; setCanGpuRender: import("react").Dispatch>; setIsGpuEnabled: (isGpuEnabled: boolean, byUser?: boolean) => void; };