import React from 'react'; import type { View } from 'react-native'; import { type TabNavigationBaseProps } from '../tabs/TabNavigation'; export type TabbedChipsBaseProps = Omit< TabNavigationBaseProps, 'variant' >; export type TabbedChipsProps = TabbedChipsBaseProps; type TabbedChipsFC = ( props: TabbedChipsProps & { ref?: React.ForwardedRef; }, ) => React.ReactElement; /** * @deprecated Use `TabbedChips(Alpha)` instead. This will be removed in a future major release. * @deprecationExpectedRemoval v9 */ export declare const TabbedChips: TabbedChipsFC; export {}; //# sourceMappingURL=TabbedChips.d.ts.map