import React from 'react'; export interface SwipeActionOptionProps { name?: React.ReactNode; style?: React.CSSProperties; onTap?: (e: any) => void; [restProps: string]: any; } export interface SwipeActionProps { open?: boolean; options?: SwipeActionOptionProps[]; children?: React.ReactNode; onTouchStart?: (e: any) => void; onOpened?: (e: any) => void; onClosed?: (e: any) => void; } declare const SwipeAction: React.FC; export default SwipeAction;