import { DocumentIoType } from "kryo/types/document"; import { Uint16, Uint32, Uint8 } from "semantic-types"; export interface H263VideoPacket { version: Uint32; temporalReference: Uint32; width: Uint16; height: Uint16; pictureType: any; useDeblockingFilter: boolean; quantizer: Uint32; extraInformations: Uint8[]; macroBlock: any; pictureStuffing: any; } export declare const $H263VideoPacket: DocumentIoType;