import { CollapsibleProps, TabItemProps } from "react-native-collapsible-tab-view"; interface Indicator { tabName: string; Component: React.FC>; } export interface TabsContainerProps extends CollapsibleProps { indicators?: Indicator[]; onTabPress?: (tabName: string) => void; stickyTabBarComponent?: React.ReactNode; tabScrollEnabled?: boolean; variant?: "pills" | "tabs"; } export declare const TabsContainer: React.FC; export {};