import { DocumentIoType } from "kryo/types/document"; import { Uint16, Uint8 } from "semantic-types"; import { ScreenImageBlock } from "./screen-image-block"; export interface ScreenVideoPacket { imageWidth: Uint16; imageHeight: Uint16; blockWidth: Uint8; blockHeight: Uint8; blocks: ScreenImageBlock[]; } export declare const $ScreenVideoPacket: DocumentIoType;