///
import { type PolymorphicComponentProps } from '@quotalab/headless-hooks';
import { type TabItemLineRootOwnProps, type TabItemSolidRootOwnProps } from './@common';
import { type DefaultTabContextValue } from '../../Tab.context';
declare const DEFAULT_ELEMENT = "button";
export type TabItemOwnProps = ({
variant?: 'line';
} & TabItemLineRootOwnProps) | ({
variant?: 'solid';
} & TabItemSolidRootOwnProps);
export type TabItemProps = PolymorphicComponentProps>;
type TabItemComponent = (props: TabItemProps) => React.ReactNode;
export declare const TabItem: TabItemComponent;
export {};
//# sourceMappingURL=TabItem.d.ts.map