import type { TileBuilder, TileBuilderParams } from '../../Core/Prefab/TileBuilder'; export declare function getBufferIndexSize(segments: number, noSkirt: boolean): number; type Option = T | undefined; type IndexArray = Option; export type Buffers = { index: IndexArray; position: Float32Array; normal: Float32Array; uvs: [Option, Option]; }; type BufferCache = { index: Exclude; uv: Float32Array; }; /** Compute buffers describing a tile according to a builder and its params. */ export declare function computeBuffers(builder: TileBuilder, params: TileBuilderParams, cache?: BufferCache): Buffers; export {};