import { FlylineDataMap, OutFlyLine } from '../../../LczAMap/type/child'; export default class FlyLine { map: any; loca: any; flylineInstance: any; flyline: OutFlyLine | null; constructor(options: { map: any; }); updataView(flyline: OutFlyLine): void; draw3dflyline(): void; getflylineStyles(): { unit: string; lineColors: string[]; height: number; smoothSteps: number; speed: number; lineWidth: number[]; headColor: string | undefined; trailColor: string | undefined; flowLength: number; }; getglylineheight(val?: number): number; getflylineGeoData(data: FlylineDataMap[]): any; destroy(): void; }