/// import React from 'react'; interface ITab { children: React.ReactNode; active: boolean; onClick: () => void; colors: { [key: string]: string; }; } declare const Tab: ({ children, active, onClick, colors }: ITab) => JSX.Element; export { ITab, Tab };