import type { Device } from "../device.js"; import { Resource, ResourceProps } from "./resource.js"; export type ExternalTextureProps = ResourceProps & { source: HTMLVideoElement; colorSpace?: 'srgb'; }; export declare abstract class ExternalTexture extends Resource { get [Symbol.toStringTag](): string; constructor(device: Device, props: ExternalTextureProps); static defaultProps: Required; } //# sourceMappingURL=external-texture.d.ts.map