import type { Color, Format } from '@antv/g-device-api'; export declare class RGRenderTargetDescription { format: Format; width: number; height: number; sampleCount: number; colorClearColor: Readonly | 'load'; depthClearValue: number | 'load'; stencilClearValue: number | 'load'; constructor(format: Format); /** * Set the dimensions of a render target description. */ setDimensions(width: number, height: number, sampleCount: number): void; copyDimensions(desc: Readonly): void; } //# sourceMappingURL=RenderTargetDescription.d.ts.map