import type { Device } from "@vgpu/core"; import type { InspectMaterial } from "./inspect-material.ts"; export interface WireframeMaterialSpec { readonly device: Device; readonly color?: readonly [number, number, number]; readonly targetFormat?: GPUTextureFormat; } export declare function wireframeMaterial(spec: WireframeMaterialSpec): InspectMaterial; //# sourceMappingURL=wireframe-material.d.ts.map