import type { Color } from "../math/Color.ts"; import { LineMaterial } from "./LineMaterial.ts"; interface DashedLineMaterialOptions { color?: Color | number | string; linewidth?: number; dashSize?: number; gapSize?: number; layer?: number; opacity?: number; transparent?: boolean; depthTest?: boolean; depthWrite?: boolean; } /** Line material that renders a repeating dash pattern. */ export declare class DashedLineMaterial extends LineMaterial { type: string; dashSize: number; gapSize: number; constructor(options?: DashedLineMaterialOptions); clone(): DashedLineMaterial; copy(source: DashedLineMaterial): this; } export {}; //# sourceMappingURL=DashedLineMaterial.d.ts.map