import * as React from "react"; interface TabsContextProps { activeValue?: string; tabsActiveValue: string; closable?: boolean; childrenList?: any; setTabsActiveValue: React.Dispatch>; setChildrenList?: React.Dispatch>; calcStyle: (tabWidth: number, offset: number) => void; handleClose?: (index: string) => void; onChange?: (activeValue: string) => void; } export declare const TabsContext: React.Context; export {};