import { type Context } from 'react'; interface TParams { /** * Context to check */ context: Context; /** * Name of the component has the context */ contextComponentName: string; /** * Name of the current component */ currentComponentName: string; /** * Key of the context to check */ key: string; } export default function useCustomContext({ context, key, currentComponentName, contextComponentName }: TParams): T; export {};