import { default as React } from 'react'; export interface TabsContentProps { /** * Unique identifier matching the corresponding TabsTrigger id. * When provided, content is only shown when this tab is active. * When omitted, content is always rendered (useful for router outlets). */ id?: string; /** * Tab panel content */ children: React.ReactNode; /** * Additional class name(s) */ className?: string; } export declare const TabsContent: { (props: TabsContentProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; }; export default TabsContent;