import { Device, SwapChain } from '@antv/g-device-api'; import { RenderCache } from '../utils'; import { TexturePool } from '../resources'; import { RenderGraph } from '../render-graph/RenderGraph'; export declare class GPUResource { device: Device; swapChain: SwapChain; renderCache: RenderCache; renderGraph: RenderGraph; texturePool: TexturePool; constructor(value?: Partial); }