import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface RemoveObject extends _Tag { readonly type: TagType.RemoveObject; readonly characterId?: Uint16; readonly depth: Uint16; } export declare const $RemoveObject: DocumentIoType;