import React, { FC } from 'react';
import { ButtonAction } from './types';
declare type Props = {
    action: ButtonAction;
    isDisabled?: boolean;
    borderRadius?: string;
    background?: string;
    backgroundHover?: string;
    className?: string;
    onClick?: (e: React.SyntheticEvent, type: ButtonAction) => void;
};
export declare const ActionButton: FC<Props>;
export default ActionButton;
