import type { Device, Format, Texture } from '@antv/g-device-api'; import { TextureDimension, TextureUsage } from '@antv/g-device-api'; import type { RGRenderTargetDescription } from './RenderTargetDescription'; export declare class SingleSampledTexture { readonly dimension = TextureDimension.TEXTURE_2D; readonly depthOrArrayLayers = 1; readonly mipLevelCount = 1; readonly usage = TextureUsage.RENDER_TARGET; format: Format; width: number; height: number; texture: Texture; age: number; constructor(device: Device, desc: Readonly); matchesDescription(desc: Readonly): boolean; reset(desc: Readonly): void; destroy(): void; } //# sourceMappingURL=SingleSampledTexture.d.ts.map