import MaterialProperty from "../../MaterialProperty";
/**
 * 扫描圆材质
 * @noInheritDoc
 * @example
 * ```ts
 * let material = new BC.CircleScanMaterialProperty({
 *   color: BC.Color.WHITE,
 * })
 * ```
 */
declare class CircleScanMaterialProperty extends MaterialProperty {
    /**
     * 颜色
     */
    color: Cesium.Color;
    /**
     * 速度
     */
    speed: number;
    /**
     * @param options 属性
     */
    constructor(options?: {
        /**
         * 颜色
         * @defaultValue BC.Color.fromBytes(0, 255, 255, 255)
         */
        color: Cesium.Color;
        /**
         * 速度
         * @defaultValue 1
         */
        speed: number;
    });
    /**
     * @internal
     */
    getType(time: any): string;
    /**
     * @internal
     */
    getValue(time: any, result: any): any;
    /**
     * @internal
     */
    equals(other: any): any;
}
export default CircleScanMaterialProperty;
