import { default as React } from 'react'; import * as TabsPrimitive from '@radix-ui/react-tabs'; export type ContentProps = Omit, 'value'> & { /** A unique value that associates the content with a trigger. */ value: TabsPrimitive.TabsContentProps['value']; }; /** Contains the content associated with each trigger.*/ export declare const Content: React.ForwardRefExoticComponent, "ref">, "value"> & { /** A unique value that associates the content with a trigger. */ value: TabsPrimitive.TabsContentProps["value"]; } & React.RefAttributes>;