import CSS from 'csstype';
import { ReactNode } from 'react';
import { IButton } from '../../../types';
interface IProps {
    style?: CSS.Properties;
    args: IButton;
    renderButton?: (args: IButton) => ReactNode;
}
/**
 * Message
 */
declare const ActionButton: ({ args, renderButton, }: IProps) => import("react/jsx-runtime").JSX.Element;
export default ActionButton;
