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


declare const Fab: DefineComponent<
  {
    
    morphTo: {
      type: PropType<string>;
    },

    href: {
      type: PropType<boolean | string>;
    },

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

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

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

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

    position: {
      type: PropType<string>;
      default: string;
    },

    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 Fab;
  