import { ComponentPropsWithoutRef } from 'react'; /** * Props for the TabPanel component * @extends Omit, "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag"> */ export type TabPanelProps = Omit, "onAnimationStart" | "onDragStart" | "onDragEnd" | "onDrag"> & { /** * Unique identifier for the tab panel. */ id: string; }; /** * TabPanel component for displaying tab content. * * Features: * - Automatic visibility based on active tab * - Smooth fade animations * - Proper ARIA attributes for accessibility * - Automatic association with tab buttons * - Focus management * - Layout animations * * @example * *

First Tab Content

*

This is the content for the first tab.

*
*/ export declare const TabPanel: import('react').ForwardRefExoticComponent, HTMLDivElement>, "ref">, "onDrag" | "onDragEnd" | "onDragStart" | "onAnimationStart"> & { /** * Unique identifier for the tab panel. */ id: string; } & import('react').RefAttributes>;