/// import { SwipeCellProps } from "./swipe-cell"; import SwipeCellActions from "./swipe-cell-actions"; interface SwipeCellInterface { (props: SwipeCellProps): JSX.Element; Actions: typeof SwipeCellActions; } declare const SwipeCell: SwipeCellInterface; export default SwipeCell;