import React from 'react'; export type PopoverProps = React.PropsWithChildren<{ isOpen?: boolean; focusTrap?: boolean; onChange?: (opened: boolean) => void; }>; export declare function Popover({ children, isOpen: isOpenProp, focusTrap, onChange: onChangeProp }: PopoverProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=Popover.d.ts.map