import { AppBarProps } from "@material-ui/core/AppBar"; import { TabProps } from "@material-ui/core/Tab"; import { TabsProps } from "@material-ui/core/Tabs"; import * as React from "react"; interface ITabProps extends TabProps { label: string; tabLabel?: React.ReactNode; children: React.ReactNode; } export declare const Tab: React.SFC; interface IProps { children: Array> | React.ReactElement; variant?: TabsProps["variant"]; indicatorColor?: TabsProps["indicatorColor"]; appBarComponent?: React.ComponentType; tabComponent?: React.ComponentType; defaultIndex?: number; } export declare function Tabs(props: IProps): JSX.Element; export {};