import React, { FC, PropsWithChildren } from "react"; import { TabViewMode } from "./constants"; export interface TabContentProps { keepAlive?: boolean; tabs?: any[]; activeIndex?: number; mode: TabViewMode; } export declare const TabContent: FC>; export declare const MemorizedTabContent: React.NamedExoticComponent>; //# sourceMappingURL=tabContent.d.ts.map