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