import { Component, FunctionComponent, PropsOf } from '@builder.io/qwik'; import { TabsVariant } from '../../components/Tabs/tabs-types'; import type { IconProps } from 'flowbite-qwik-icons'; type TabsProps = PropsOf<'div'> & { variant?: TabsVariant; directive?: 'if' | 'show'; onClickInteraction$?: () => void; }; export declare const Tabs: FunctionComponent; type TabProps = PropsOf<'div'> & { active?: boolean; disabled?: boolean; icon?: Component; }; export declare const Tab: Component; export {};