@lobehub/ui
Version:
Lobe UI is an open-source UI component library for building AIGC web apps
11 lines (10 loc) • 353 B
text/typescript
import { PopoverGroupSharedProps } from "./groupContext.mjs";
import { FC, ReactNode } from "react";
//#region src/Popover/PopoverGroup.d.ts
type PopoverGroupProps = PopoverGroupSharedProps & {
children: ReactNode;
};
declare const PopoverGroup: FC<PopoverGroupProps>;
//#endregion
export { PopoverGroup };
//# sourceMappingURL=PopoverGroup.d.mts.map