interface TabsProps {
    fitWidth?: boolean;
    tabsVariant?: string;
    tabPanels: any[];
    tabNames: string[];
    tabListBgColor?: string;
    tabsBgColor?: string;
    tabSpacing?: string;
    tabsTextColor?: string;
    selectedTabBgColor?: string;
    selectedTabTextColor?: string;
    tabPanelBgColor?: string;
}
declare const TabLayout: (props: TabsProps) => JSX.Element;
export default TabLayout;
