import React from 'react'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; import type { TextProps } from '../typography/Text'; import type { TabProps } from './TabNavigation'; export type TabLabelBaseProps = SharedProps & Pick & { /** Identify the active tab */ active?: boolean; /** Display title to render as the TabLabel. */ children: React.ReactNode; /** Callback to fire when pressed */ onPress?: () => void; }; export type TabLabelProps = TabLabelBaseProps & TextProps; /** @deprecated Use DefaultTab instead. This will be removed in a future major release. */ /** @deprecationExpectedRemoval v10 */ export declare const TabLabel: React.MemoExoticComponent< ({ active, variant, count, max, ...props }: TabLabelProps) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=TabLabel.d.ts.map