import { default as React, ComponentPropsWithoutRef } from 'react'; export interface TabsPanelProps extends ComponentPropsWithoutRef<'div'> { /** * Specify the value of the panel */ value: string; /** * Specify the content of the panel */ children: React.ReactNode; } export declare const TabsPanel: ({ value, children, className: _className, ...props }: TabsPanelProps) => import("react/jsx-runtime").JSX.Element;