import * as THREE from 'three'; /** Options for {@link createLatheMesh}: radial `segments`, partial-revolution angles, and material. */ export interface LatheOptions { segments?: number; phiStart?: number; phiLength?: number; material?: THREE.Material; } /** Revolve a 2D profile of `[radius, y]` pairs around the Y axis — vases, columns, chess pieces. `segments` defaults to 32. */ export declare function createLatheMesh(profile: ReadonlyArray, options?: LatheOptions): THREE.Mesh; //# sourceMappingURL=lathe.d.ts.map