UNPKG

@lobehub/ui

Version:

Lobe UI is an open-source UI component library for building AIGC web apps

15 lines (14 loc) 456 B
import * as react58 from "react"; import { ReactNode } from "react"; //#region src/Popover/context.d.ts type PopoverContextValue = { close: () => void; }; declare const PopoverProvider: react58.NamedExoticComponent<{ children: ReactNode; value: PopoverContextValue; }>; declare const usePopoverContext: () => PopoverContextValue; //#endregion export { PopoverContextValue, PopoverProvider, usePopoverContext }; //# sourceMappingURL=context.d.mts.map