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