import { default as React } from 'react'; interface DropdownContentProps { onClickOutside: () => void; direction: 'Down' | 'Up'; target: React.MutableRefObject; children: React.ReactNode; id: string; isPaddingContent?: boolean; isMetapropertyDropdown?: boolean; leftOffset?: number; maxWidth?: number; excludeRefs?: React.MutableRefObject[]; /** * Sub-dropdowns fly out from their parent menu rather than from a button * inside the container, so the container is not a meaningful bound for them. */ isSubDropdown?: boolean; } export declare const DropdownContent: React.ForwardRefExoticComponent>; export {};