import { SystemProps } from "../system/system.js";
import { VuiComponent } from "../core/vui.js";
import { BoxProps } from "../box/box.types.js";
import { PopoverProps } from "./popover.types.js";
//#region src/popover/popover.d.ts
declare function Popover(props: PopoverProps): import("react").JSX.Element;
declare namespace Popover {
  var Content: VuiComponent<"div", BoxProps>;
  var Trigger: VuiComponent<"button", SystemProps>;
  var displayName: string;
}
//#endregion
export { Popover };

//# sourceMappingURL=popover.d.ts.map