import { DocumentIoType } from "kryo/types/document"; import { Uint16 } from "semantic-types"; import { ButtonSound } from "../button/button-sound"; import { _Tag } from "./_tag"; import { TagType } from "./_type"; export interface DefineButtonSound extends _Tag { type: TagType.DefineButtonSound; buttonId: Uint16; overUpToIdle?: ButtonSound; idleToOverUp?: ButtonSound; overUpToOverDown?: ButtonSound; overDownToOverUp?: ButtonSound; } export declare const $DefineButtonSound: DocumentIoType;