import { FC, PropsWithChildren } from 'react';
import { TabsTheme } from './TabsTheme';
export interface TabPanelProps extends PropsWithChildren {
    /**
     * The class name to be added to the tab panel.
     */
    className?: string;
    /**
     * Theme for the Tabs.
     */
    theme?: TabsTheme;
}
export declare const TabPanel: FC<TabPanelProps>;
