
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';


declare const ActionsButton: DefineComponent<
  {
    
    bold: {
      type: PropType<boolean>;
    },

    close: {
      type: PropType<boolean>;
      default: boolean;
    },

    color: {
      type: PropType<string>;
    },

    colorTheme: {
      type: PropType<string>;
    },

    textColor: {
      type: PropType<string>;
    },

    bgColor: {
      type: PropType<string>;
    },

    borderColor: {
      type: PropType<string>;
    },

    rippleColor: {
      type: PropType<string>;
    },

    themeDark: {
      type: PropType<boolean>;
    }
  },
  () => JSX.Element,
  unknown,
  {},
  {},
  ComponentOptionsMixin,
  ComponentOptionsMixin,
  ("click")[],
  "click"
>;

export default ActionsButton;
  