export type GLType = 'webgl' | 'webgl2'; /** * Helper class to create a WebGL Context * * @param canvas * @param glType * @param options * @returns */ export declare function createGLContext(canvas: HTMLCanvasElement | OffscreenCanvas, glType: GLType | undefined, options: WebGLContextAttributes): WebGLRenderingContext | WebGL2RenderingContext;