import type { ViewProps } from "@tarojs/components/types/View"; import * as React from "react"; import { type ReactNode } from "react"; type SwipeCellSide = "left" | "right"; interface SwipeCellActionsProps extends ViewProps { side?: SwipeCellSide; children?: ReactNode; } declare const SwipeCellActions: React.ForwardRefExoticComponent & React.RefAttributes>>; export default SwipeCellActions;