import React from 'react'; import { BoxProps } from '../../box'; import { TabHeaderProps } from '../TabHeader'; export type TabPaneProps = Omit & { children?: React.ReactNode; }; export declare const TabPane: React.FC; export default TabPane;