import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const BlockTitle: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Medium sized block title */ medium: { type: BooleanConstructor; default: false; }; /** * Large sized block title */ large: { type: BooleanConstructor; default: false; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default 'text-black/60 dark:text-white/60' */ textIos?: string; /** * * @default 'text-md-light-primary dark:text-md-dark-primary' */ textMaterial?: string; /** * * @default 'text-black dark:text-white' */ mediumTextIos?: string; /** * * @default 'text-md-light-primary dark:text-md-dark-primary' */ mediumTextMaterial?: string; /** * * @default 'text-black dark:text-white' */ largeTextIos?: string; /** * * @default 'text-md-light-primary dark:text-md-dark-primary' */ largeTextMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default BlockTitle;