import { FC, ReactNode } from 'react'; type TabProps = { title: string; icon?: string; children?: ReactNode; }; export declare const Tab: FC; export {};