interface TabNextContextValue { tabId?: string; focused: boolean; selected: boolean; value: string; disabled: boolean; actions: string[]; registerAction: (id: string) => () => void; } export declare const TabNextContext: import("react").Context; export declare function useTabNext(): TabNextContextValue; export {};