UNPKG

@yuntijs/ui

Version:

☁️ Yunti UI - an open-source UI component library for building Cloud Native web apps

13 lines (12 loc) 436 B
import { ReactNode } from 'react'; import { MentionsOptionsMap } from './types'; interface Value { optionsMap: MentionsOptionsMap; } export declare const MentionsConfigContext: import("react").Context<Value | null>; export declare const MentionsConfigProvider: import("react").NamedExoticComponent<{ children: ReactNode; value: Value; }>; export declare const useOptionsMap: () => MentionsOptionsMap | undefined; export {};