import * as React from 'react'; import { StandardProps } from '../../common'; import { TabControlItem } from '../TabControl'; export interface TabPanelProps extends StandardProps { /** * The tab items that should be shown. */ data: Array; /** * @ignore */ children?: void; } /** * Represents the default layout used for a tab control. */ export declare const TabPanel: React.SFC & { inner: { readonly TabHeader: any; readonly TabItem: any; readonly TabContainer: any; readonly TabHeaders: any; readonly TabContent: any; }; };