import * as React from 'react'; import {PropsWithChildren} from "react"; export type PopoverProps = import('wix-ui-core/popover').PopoverProps & { dataHook?: string; animate?: boolean; theme?: PopoverTheme; disableClickOutsideWhenClosed?: boolean; }; export default class Popover extends React.Component> { static Element: React.FC<{ children: React.ReactNode }>; static Content: React.FC<{ children: React.ReactNode }>; } export type PopoverTheme = 'dark' | 'light';