import React from "react"; import { TabContextProps } from "./tabs.types"; export declare const TabContext: React.Context; interface TabProviderProps { children?: React.ReactNode; tabId: string; visible: boolean; } export declare const TabProvider: ({ children, tabId, visible }: TabProviderProps) => React.JSX.Element; export {};