import type { IRenderOptions } from '@antv/l7-core'; import BaseLayer from '../core/BaseLayer'; import type { IWindLayerStyleOptions } from '../core/interface'; import type { WindModelType } from './models'; export default class WindLayer extends BaseLayer { type: string; buildModels(): Promise; renderModels(options?: Partial): this; protected getDefaultConfig(): {}; getModelType(): WindModelType; }