import { JSX } from 'solid-js/jsx-runtime'; import { HapticForce } from '../api/haptic'; export type HapticButtonProps = JSX.ButtonHTMLAttributes & { children: JSX.Element; hapticForce?: HapticForce; }; export declare function HapticButton(props: HapticButtonProps): JSX.Element;