import type { BaseStyleProps, DisplayObjectConfig } from '@antv/g-lite'; import { DisplayObject } from '@antv/g-lite'; export declare enum FogType { NONE = 0, EXP = 1, EXP2 = 2, LINEAR = 3 } export interface FogProps extends BaseStyleProps { type: FogType; density: number; start: number; end: number; } export declare class Fog extends DisplayObject { static PARSED_STYLE_LIST: Set; static tag: string; constructor({ style, ...rest }?: DisplayObjectConfig); } //# sourceMappingURL=Fog.d.ts.map