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