import type { ModelBuilder } from '../model/ModelBuilder'; /** * Options for the {@link buildCube} function * * @public */ export interface BuildCubeOptions { /** * The uniform size (width, height, depth) of the cube * @remarks * defaults to 1 */ size?: number; /** * The tesselation factor for each face */ tesselation?: number; } /** * Builds a cube shape into the {@link ModelBuilder} * * @public */ export declare function buildCube(builder: ModelBuilder, options?: BuildCubeOptions): void; //# sourceMappingURL=buildCube.d.ts.map