import { HASSDomEvent } from "./fire-event"; /** * Broadcast haptic feedback requests */ export type HapticType = "success" | "warning" | "failure" | "light" | "medium" | "heavy" | "selection"; declare global { interface HASSDomEvents { haptic: HapticType; } interface GlobalEventHandlersEventMap { haptic: HASSDomEvent; } } export declare const forwardHaptic: (hapticType: HapticType) => void;