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