import { t as Serializable } from "./Serializable-BNGC32bH.js"; import { n as SoundJSON, t as Sound } from "./Sound-CciNdrdP.js"; import { n as VibrationJSON, t as Vibration } from "./Vibration-DeOqNEIP.js"; //#region src/main/Feedback.d.ts interface FeedbackJSON { vibration?: VibrationJSON; sound?: SoundJSON; } declare class Feedback implements Serializable { private readonly _vibration; private readonly _sound; constructor(vibration: Vibration | null, sound: Sound | null); static get defaultFeedback(): Feedback; get vibration(): Vibration | null; get sound(): Sound | null; emit(): void; toJSONObject(): FeedbackJSON; } //#endregion export { FeedbackJSON as n, Feedback as t };