@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
13 lines (12 loc) • 428 B
text/typescript
import { ModalContextValue } from "./type.mjs";
import * as react52 from "react";
import { ReactNode } from "react";
//#region src/Modal/ModalProvider.d.ts
declare const ModalProvider: react52.NamedExoticComponent<{
children: ReactNode;
value: ModalContextValue;
}>;
declare const useModalContext: () => ModalContextValue;
//#endregion
export { ModalProvider, useModalContext };
//# sourceMappingURL=ModalProvider.d.mts.map