import React__default, { Dispatch, SetStateAction } from 'react'; type DropdownSide = "top" | "bottom" | "left" | "right" | "inline-end" | "inline-start"; type DropdownAlign = "start" | "center" | "end"; interface DropdownProps { anchor: string; isOpen?: boolean; setIsOpen?: Dispatch>; children?: React__default.ReactNode; side?: DropdownSide; align?: DropdownAlign; sideOffset?: number; tooltip?: string; } declare const Dropdown: React__default.ForwardRefExoticComponent>; export { Dropdown, type DropdownAlign, type DropdownSide };