import { type ButtonProps } from "@taroify/core/button"; import type { CSSProperties, PropsWithChildren } from "react"; import type { ActionBarButtonColor, ActionBarButtonShape } from "./action-bar.shared"; export interface ActionBarButtonProps extends PropsWithChildren> { className?: string; style?: CSSProperties; color?: ActionBarButtonColor; shape?: ActionBarButtonShape; } declare function ActionBarButton(props: ActionBarButtonProps): JSX.Element; export default ActionBarButton;