import { Component } from 'preact'; export type LongPressButtonProps = { onClick: () => void; children: any; }; export declare class LongPressButton extends Component { buttonPressTimer: ReturnType | null; _repeat: () => void; _handleButtonPress: () => void; _handleButtonRelease: () => void; render(): import("preact").JSX.Element; } //# sourceMappingURL=long-press-button.d.ts.map