import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { SoundInfo } from "../sound/sound-info"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface StartSound extends _Tag { type: TagType.StartSound; soundId: Uint16; soundInfo: SoundInfo; } export declare const $StartSound: DocumentIoType;