import { IHapticFeedbackProps } from './type'; export abstract class HapticFeedback { static vibrate(_: IHapticFeedbackProps): void { // no-op } }