import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const TabbarLink: DefineComponent< { /** * Makes this tabbar link active */ active: { type: BooleanConstructor; default: false; }; /** * Component's HTML Element */ component: { type: PropType; default: 'a'; }; /** * Object with additional props (attributes) to pass to the Link/Button */ linkProps: { type: any; }; /** * Link label content */ label: { type: StringConstructor; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default 'text-black dark:text-white' */ textIos?: string; /** * * @default 'text-primary' */ textActiveIos?: string; /** * * @default 'text-md-light-on-surface-variant dark:text-md-dark-on-surface-variant' */ textMaterial?: string; /** * * @default 'text-md-light-on-secondary-container dark:text-md-dark-on-secondary-container' */ textActiveMaterial?: string; /** * * @default '' */ iconBgIos?: string; /** * * @default '' */ iconBgActiveIos?: string; /** * * @default '' */ iconBgMaterial?: string; /** * * @default 'bg-md-light-secondary-container dark:bg-md-dark-secondary-container' */ iconBgActiveMaterial?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default TabbarLink;