import React from 'react'; import { type BoxBaseProps } from '../layout'; import { type TabNavigationBaseProps } from '../tabs'; export type TabbedChipsBaseProps = BoxBaseProps & Omit, '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