import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const ActionsLabel: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Button text font size in iOS theme */ fontSizeIos: { type: StringConstructor; default: 'text-sm'; }; /** * Button text font size in Material theme */ fontSizeMaterial: { type: StringConstructor; default: 'text-sm'; }; /** * Renders button outer hairlines (borders). If not specified, will be enabled in iOS theme */ dividers: { type: BooleanConstructor; default: undefined; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default '' */ bgIos?: string; /** * * @default '' */ bgMaterial?: string; /** * * @default 'text-black/55 dark:text-white/55' */ textIos?: string; /** * * @default 'text-md-light-primary dark:text-md-dark-primary' */ textMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default ActionsLabel;