import React from 'react'; interface TabProps { label?: React.ReactNode | any; disabled: boolean; } interface CustomTabsProps { selectedId: number; onChangeTab: (value: number) => void; tabsList: TabProps[]; } declare function CustomTabs({ selectedId, onChangeTab, tabsList, }: CustomTabsProps): JSX.Element; declare function TabPanel(props: any): JSX.Element; export { TabPanel, CustomTabs as Tabs };