import React, { ReactElement } from "react";
interface TabProps {
  onPress?: (index?: number) => void;
  isActive?: boolean;
  children?: React.ReactNode;
  tabIndex?: number;
}
export declare const Tab: React.FC<TabProps>;
interface TabsProps {
  /**
   *
   * Executes an action on a single tab click
   * @param index - Index of clicked tab item.
   */
  onSingleTabPress?: (index?: number) => void;
  /**
   * Active tab index. The tab at that index would be highlighted.
   */
  activeTabIndex?: number;
  children: ReactElement<TabProps> | ReactElement<TabProps>[];
}
export declare const Tabs: React.FC<TabsProps>;
export {};
