/// export interface Props { isOpen: boolean; stayOpen?: boolean; onClose: (...args: any[]) => any; position?: "top" | "bottomRight" | "bottomLeft" | "topRight" | "topLeft"; className?: string; children?: any; } declare const Dropdown: ({ isOpen, stayOpen, onClose, position, children, className }: Props) => JSX.Element; export default Dropdown;