import { ButtonProps } from '../Button'; interface LongPressProps extends ButtonProps { delay?: number; onLongPress: () => void; } declare const TimedButton: ({ onLongPress, delay, ...props }: LongPressProps) => import("react/jsx-runtime").JSX.Element; export { TimedButton, type LongPressProps }; //# sourceMappingURL=TimedButton.d.ts.map