/// import React from 'react'; interface ITabList { children: React.ReactNode; colors: { [key: string]: string; }; } declare const TabList: ({ children, colors }: ITabList) => JSX.Element; export { ITabList, TabList };