import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { VideoCodec } from "../video/video-codec"; import { VideoDeblocking } from "../video/video-deblocking"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineVideoStream extends _Tag { type: TagType.DefineVideoStream; id: Uint16; frameCount: Uint16; width: Uint16; height: Uint16; useSmoothing: boolean; deblocking: VideoDeblocking; codec: VideoCodec; } export declare const $DefineVideoStream: DocumentIoType;