import React from "react"; export interface TagSearchBoxContextValue { attributesSelectTips?: string; disableAttributesFilter?: boolean; close?: () => void; } export const TagSearchBoxContext = React.createContext< TagSearchBoxContextValue >({});