export declare class FullModel { /** Indices buffer. */ protected bufferIndices: any; /** Strides buffer. */ protected bufferStrides: any; /** Number of model indices. */ protected numIndices: number; /** Default constructor. */ constructor(); private loadBuffer; /** * Loads model. * * @param url Base URL to model indices and strides files. * @param gl WebGL context. * @returns Promise which resolves when model is loaded. */ load(url: string, gl: WebGLRenderingContext): Promise; /** * Binds buffers for a `glDrawElements()` call. * * @param gl WebGL context. */ bindBuffers(gl: WebGLRenderingContext): void; /** * Returns number of indices in model. * * @return Number of indices */ getNumIndices(): number; }