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