import React from 'react'; declare type Props = { tabs: { id: string; title: string; }[]; activeTabId: string; onClick: (id: string) => void; children: React.ReactNode; stretch: boolean; }; declare const Tabs: (props: Props) => JSX.Element; export default Tabs;