import { ReactNode } from 'react'; import { IFixedProps, IInnerTab, ITabPanelProps, ITabsNavProps } from './types'; export declare function getTabDataFromChild(child: React.ReactElement>>, activeId: Id): IInnerTab; export declare function commonTransformTabData(tabItem: IInnerTab, propCandel: boolean, fixedProps?: IFixedProps): { fixedIds?: Id[]; onFixedChange?: (ids: Id[]) => void; key: Id; actived: boolean; disabled: boolean; title: ReactNode; className: string; candel: boolean; canFixed: boolean; }; export declare const getTabPanelStringTitle: (title: ReactNode) => string; export declare const getFixedProps: (props: ITabsNavProps) => IFixedProps;