/**
 * A WebGPU implementation of the IndexBuffer.
 *
 * @ignore
 */
export class WebgpuIndexBuffer extends WebgpuBuffer {
    constructor(indexBuffer: any, options: any);
    format: any;
    unlock(indexBuffer: any): void;
}
import { WebgpuBuffer } from './webgpu-buffer.js';
