import type { ComponentPropsWithoutRef } from 'react'; type TabsContentProps = ComponentPropsWithoutRef<'div'> & { keepMounted?: boolean; value: string; }; declare function TabsContent({ children, keepMounted, value, ...props }: TabsContentProps): import("react/jsx-runtime").JSX.Element | null; export default TabsContent; export type { TabsContentProps };