import React from "react";
import { ButtonProps as ShadcnButtonProps } from "@/components/ui/button";
export interface ActionButtonProps extends ShadcnButtonProps {
    children: React.ReactNode;
    inputType: "submit" | "reset" | "button" | undefined;
    actions: {
        action: () => void;
    };
}
declare const ActionButton: React.FC<ActionButtonProps>;
export { ActionButton };
