/** * The type of notification feedback generated by a UINotificationFeedbackGenerator object. * [`UINotificationFeedbackType`](https://developer.apple.com/documentation/uikit/uinotificationfeedbacktype) */ export declare enum NotificationFeedbackType { /** * A notification feedback type indicating that a task has completed successfully. */ Success = "success", /** * A notification feedback type indicating that a task has produced a warning. */ Warning = "warning", /** * A notification feedback type indicating that a task has failed. */ Error = "error" } /** * The mass of the objects in the collision simulated by a UIImpactFeedbackGenerator object * [`UINotificationFeedbackStyle`](https://developer.apple.com/documentation/uikit/uiimpactfeedbackstyle) */ export declare enum ImpactFeedbackStyle { /** * A collision between small, light user interface elements. */ Light = "light", /** * A collision between moderately sized user interface elements. */ Medium = "medium", /** * A collision between large, heavy user interface elements. */ Heavy = "heavy" } //# sourceMappingURL=Haptics.types.d.ts.map