import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { SoundInfo } from "../sound/sound-info"; export interface ButtonSound { soundId: Uint16; soundInfo: SoundInfo; } export declare const $ButtonSound: DocumentIoType;