import * as React from 'react'; import { TabProps as ReactAriaTabProps } from 'react-aria-components'; import { TabButtonProps } from './TabButton'; interface TabBaseProps extends TabButtonProps, ReactAriaTabProps { } export type TabProps = Omit & { /** * the id matches up the tab and tab panel */ id: string; }; export declare const Tab: React.FC; export {};