import HTMLElement from '../html-element/HTMLElement.js';
import Blob from '../../file/Blob.js';
import OffscreenCanvas from './OffscreenCanvas.js';
import Event from '../../event/Event.js';
import MediaStream from '../html-media-element/MediaStream.js';
/**
* HTMLCanvasElement
*
* @see https://developer.mozilla.org/en-US/docs/Web/API/HTMLCanvasElement
*/
export default class HTMLCanvasElement extends HTMLElement {
oncontextlost: (event: Event) => void | null;
oncontextrestored: (event: Event) => void | null;
onwebglcontextcreationerror: (event: Event) => void | null;
onwebglcontextlost: (event: Event) => void | null;
onwebglcontextrestored: (event: Event) => void | null;
/**
* Returns width.
*
* @returns Width.
*/
get width(): number;
/**
* Sets width.
*
* @param width Width.
*/
set width(width: number);
/**
* Returns height.
*
* @returns Height.
*/
get height(): number;
/**
* Sets height.
*
* @param height Height.
*/
set height(height: number);
/**
* Returns capture stream.
*
* @param [frameRate] Frame rate.
* @returns Capture stream.
*/
captureStream(frameRate?: number): MediaStream;
/**
* Returns context.
*
* @param _contextType Context type.
* @param [_contextAttributes] Context attributes.
* @returns Context.
*/
getContext(_contextType: '2d' | 'webgl' | 'webgl2' | 'webgpu' | 'bitmaprenderer', _contextAttributes?: {
[key: string]: any;
}): null;
/**
* Returns to data URL.
*
* @param [_type] Type.
* @param [_encoderOptions] Quality.
* @returns Data URL.
*/
toDataURL(_type?: string, _encoderOptions?: any): string;
/**
* Returns to blob.
*
* @param callback Callback.
* @param [_type] Type.
* @param [_quality] Quality.
*/
toBlob(callback: (blob: Blob) => void, _type?: string, _quality?: any): void;
/**
* Transfers control to offscreen.
*
* @returns Offscreen canvas.
*/
transferControlToOffscreen(): OffscreenCanvas;
}
//# sourceMappingURL=HTMLCanvasElement.d.ts.map