import React from 'react'; import { TabsProps } from 'antd'; import { PropsTypes } from '@orca-fe/deye-typings'; export interface CurrentTabsProps extends TabsProps { options: { key: string | number; name: string; }[]; children?: React.ReactElement[]; } declare function Tabs(props: CurrentTabsProps): JSX.Element | null; declare namespace Tabs { var title: string; var isContainer: (props: any) => any; var propsDef: PropsTypes[]; } export default Tabs;