import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface VideoFrame extends _Tag { type: TagType.VideoFrame; videoId: Uint16; frame: Uint16; packet: Uint8Array; } export declare const $VideoFrame: DocumentIoType;