import React from 'react'; import { View } from 'react-native'; import { type SegmentedTabsProps } from '../../tabs/SegmentedTabs'; import { type TabsActiveIndicatorProps } from '../../tabs/Tabs'; import { type TextBaseProps } from '../../typography/Text'; export declare const PeriodSelectorActiveIndicator: ({ activeTabRect, background, position, borderRadius, }: TabsActiveIndicatorProps) => import('react/jsx-runtime').JSX.Element | undefined; export type LiveTabLabelBaseProps = TextBaseProps & { /** * The label to display. * @default 'LIVE' */ label?: string; /** * Whether to hide the dot. */ hideDot?: boolean; /** * Style prop for customization */ style?: any; }; export type LiveTabLabelProps = LiveTabLabelBaseProps; export declare const LiveTabLabel: React.MemoExoticComponent< ({ ref, color, label, font, hideDot, style, ...props }: LiveTabLabelProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; export type PeriodSelectorProps = SegmentedTabsProps; /** * PeriodSelector is a specialized version of SegmentedTabs optimized for chart period selection. * It provides transparent background, primary wash active state, and full-width layout by default. */ export declare const PeriodSelector: React.MemoExoticComponent< ({ ref, background, activeBackground, activeColor, width, justifyContent, TabComponent, TabsActiveIndicatorComponent, ...props }: PeriodSelectorProps & { ref?: React.Ref; }) => import('react/jsx-runtime').JSX.Element >; //# sourceMappingURL=PeriodSelector.d.ts.map