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