import ' rollup-plugin-inject-process-env';
import { FC } from "react";
import "./ActionButton.scss";
export interface ActionButtonProps {
    onClick?: (label: string) => void;
    readonly type?: "button" | "submit";
    readonly label: string;
    readonly addClass?: string;
    readonly disable?: boolean;
}
declare const ActionButton: FC<ActionButtonProps>;
export default ActionButton;
