import type { ModelBuilder } from '../model/ModelBuilder'; /** * Options for the {@link buildCylinder} function * * @public */ export interface BuildCylinderOptions { /** * The height of the cylinder. Defaults to `1.0`. */ height?: number; /** * The offset along the y axis. Defaults to `-0.5`. */ offset?: number; /** * Radius of the cylinder. Defaults to `0.5`. */ radius?: number; /** * The tesselation. Defaults to `32`. */ tesselation?: number; } /** * Builds a cylinder shape into the {@link ModelBuilder} * * @public */ export declare function buildCylinder(builder: ModelBuilder, options?: BuildCylinderOptions): void; //# sourceMappingURL=buildCylinder.d.ts.map