import * as React from 'react'; import { TabPanelProps as ReactAriaTabPanelProps } from 'react-aria-components'; import { TabElementStyleProps } from './props'; interface TabPanelBaseProps extends TabElementStyleProps, ReactAriaTabPanelProps { } export type TabPanelProps = Omit & { /** * the id matches up the tab and tab panel */ id: string; /** * Whether to mount the tab panel in the DOM even when it is not currently selected. * This is a wrapper around the `shouldForceMount` prop in react-aria-components that also visually hides the inactive tab panel. */ shouldForceMount?: boolean; }; export declare const TabPanel: React.FC; export {};