import React from 'react';
import { type TabPanelProps } from '../types';
/**
 * __TabPanel__
 *
 * A TabPanel houses the contents of a Tab.
 *
 * - [Examples](https://atlassian.design/components/tabs/examples)
 * - [Code](https://atlassian.design/components/tabs/code)
 * - [Usage](https://atlassian.design/components/tabs/usage)
 */
declare const TabPanel: ({ children, testId }: TabPanelProps) => React.JSX.Element;
export default TabPanel;
