import React from 'react'; type TabType = { label: string; Component: () => JSX.Element; }; export declare const ComponentTabs: (props: { title: string; tabs: TabType[]; }) => React.JSX.Element; export {};