import { Placement, PopupProps } from "../popup/types.js"; import React from "react"; //#region src/popover/types.d.ts type PopupPlacement = Placement; interface PopoverProps extends Omit { role?: string; placement?: PopupPlacement; title?: React.ReactNode; children: React.ReactElement; } //#endregion export { PopoverProps, PopupPlacement }; //# sourceMappingURL=types.d.ts.map