import { DocumentIoType } from "kryo/types/document"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface SoundStreamBlock extends _Tag { readonly type: TagType.SoundStreamBlock; readonly data: Uint8Array; } export declare const $SoundStreamBlock: DocumentIoType;