import React from 'react'; import type { TabsProps } from 'antd'; import type { TabCloseListener, TabConfigType } from './TabsLayoutContext'; export interface TabsLayoutProps extends React.HTMLAttributes { emptyContent?: React.ReactElement; tabsProps?: TabsProps; initialTabs?: TabConfigType[]; defaultActiveKey?: string; } declare const TabsLayout: { (props: TabsLayoutProps): import("react/jsx-runtime").JSX.Element; View: (props: Omit, 'children'>) => import("react/jsx-runtime").JSX.Element; TabsLayoutContext: React.Context; TabConfigContext: React.Context; useTabCloseListener: (callback: TabCloseListener) => void; }; export default TabsLayout;