import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const ActionsGroup: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Renders group outer hairlines (borders). (in Material theme only) */ dividers: { type: BooleanConstructor; default: true; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default '' */ bgIos?: string; /** * * @default 'bg-md-light-surface-3 dark:bg-md-dark-surface-3' */ bgMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default ActionsGroup;