import React from "react"; import { PopoverProps } from "../popover"; interface Props extends Omit { } declare const Dropdown: (props: Props) => React.JSX.Element; export default Dropdown;