import { SyntheticEvent } from "react"; export declare type TabsOrientation = "horizontal" | "vertical"; export interface TabsContextType { isCollapsible?: boolean; isManual?: boolean; onSelect?: (event: SyntheticEvent, key: string) => void; orientation?: TabsOrientation; selectedKey?: string; } export declare const TabsContext: import("react").Context; export declare function useTabsContext(): TabsContextType;