import { type ITouchEvent } from "@tarojs/components"; import { type ReactNode } from "react"; import { type ButtonBaseProps } from "../button-base"; import { type SheetItemProps } from "../sheet"; export interface ActionSheetActionProps extends SheetItemProps, Omit { name?: ReactNode; value?: any; onClick?: (event: ITouchEvent) => void; } export default function ActionSheetAction(props: ActionSheetActionProps): JSX.Element;