import React from 'react'; import type { View } from 'react-native'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import type { SharedProps } from '@coinbase/cds-common/types/SharedProps'; export type TabIndicatorProps = SharedProps & { /** The width of the active TabLabel. */ width: number; /** The xPosition of the active TabLabel. */ x: number; /** This should always match the background color of the parent container * @default: 'bg' */ background?: ThemeVars.Color; }; /** @deprecated Use DefaultTabsActiveIndicator instead. This will be removed in a future major release. */ /** @deprecationExpectedRemoval v10 */ export declare const TabIndicator: React.MemoExoticComponent< ({ ref: forwardedRef, width, x, background, testID, ...props }: TabIndicatorProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=TabIndicator.d.ts.map