import { createContext, Context } from 'react'; export interface IndexBarContextState { zIndex?: number | string; highlightColor?: string; sticky?: boolean; } const IndexBarContext: Context = createContext({}); export default IndexBarContext;