import VcBaseMaterialProperty from './VcBaseMaterialProperty';
export default class VcLineTrailMaterialProperty extends VcBaseMaterialProperty {
    image: string;
    color: Cesium.Color;
    axisY: boolean;
    time: number;
    duration: number;
    repeat: Cesium.Cartesian2;
    loop: boolean;
    lastTime: number;
    _time: number;
    constructor(options?: any);
    getType(value: any): string;
    getValue(time: Cesium.JulianDate, result?: any): VcLineTrailMaterialProperty;
    equals(other: VcLineTrailMaterialProperty): boolean;
}
