import React from 'react'; import type { ThemeVars } from '@coinbase/cds-common/core/theme'; import type { SharedProps } from '@coinbase/cds-common/types'; 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; }; export declare const TabIndicator: React.MemoExoticComponent< React.ForwardRefExoticComponent< 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; } & React.RefAttributes > >; //# sourceMappingURL=TabIndicator.d.ts.map