import { type ElementType } from 'react'; import type { TabsContentProps } from './types'; /** * TabsContent component that displays content for the active tab with lazy rendering support */ export declare const TabsContent: { ({ value, forceMount, as, children, ...props }: TabsContentProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; };