import { FC, ReactElement } from 'react'; type TabListProps = { children: ReactElement[]; document?: Document; }; type TabProps = { title: string; index: number; setSelectedTab: (index: number) => void; }; export declare const Tab: FC; export declare const TabList: FC; export {};