import * as React from 'react'; import { StandardProps } from '../../common'; import { TabControlItem } from '../TabControl'; export interface DropdownPanelProps extends StandardProps { /** * The tab items that should be shown. */ data: Array; /** * @ignore */ children?: void; } /** * Represents the mobile layout used for a tab control. */ export declare const DropdownPanel: React.SFC & { inner: { readonly TabItem: any; readonly DropdownContainer: any; readonly SlideDownTabs: React.ComponentClass, any>; readonly TabContent: any; }; };