export interface ISwipeButton { title: string; disabled?: boolean; disableResetOnTap?: boolean; enableReverseSwipe?: boolean; forceReset?: () => void; loading?: boolean; height?: number; onSwipeFail?: () => void; onSwipeStart?: () => void; onSwipeSuccess: () => void; resetAfterSuccessAnimDelay?: number; resetAfterSuccessAnimDuration?: number; shouldResetAfterSuccess?: boolean; swipeSuccessThreshold?: number; thumbIconWidth?: number; } export declare const SwipeButton: ({ title, disabled, height, loading, ...rest }: ISwipeButton) => JSX.Element;