import { ReactChild } from '../../../types/common'; interface Props { anchorEl: HTMLElement | null; children: ReactChild | ReactChild[]; open: boolean; paperStyle?: React.CSSProperties; onClose: () => void; } declare const FiltersPopover: ({ open, anchorEl, children, paperStyle, onClose, }: Props) => import("react/jsx-runtime").JSX.Element; export default FiltersPopover;