import { DocumentIoType } from "kryo/types/document"; import { Uint32 } from "semantic-types"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DoAbc extends _Tag { readonly type: TagType.DoAbc; readonly flags: Uint32; readonly name: string; readonly data: Uint8Array; } export declare const $DoAbc: DocumentIoType;