import { Component, ComponentOptionsMixin, DefineComponent, PropType, StyleValue, Ref } from 'vue'; declare const ToolbarPane: DefineComponent< { /** * Component's HTML Element */ component: { type: PropType; default: 'div'; }; /** * Object with Tailwind CSS colors classes */ colors: { type: PropType<{ /** * * @default 'bg-black/10 dark:bg-white/15' */ tabbarHighlightBgIos?: string; }>; }; }, () => JSX.Element, unknown, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, { } >; export default ToolbarPane;