UNPKG

@lobehub/ui

Version:

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

13 lines 437 B
import { ReactNode } from "react"; //#region src/base-ui/Popover/context.d.ts type PopoverContextValue = { close: () => void; }; declare const PopoverProvider: import("react").NamedExoticComponent<{ children: ReactNode; value: PopoverContextValue; }>; declare const usePopoverContext: () => PopoverContextValue; //#endregion export { PopoverContextValue, PopoverProvider, usePopoverContext }; //# sourceMappingURL=context.d.mts.map