import { default as React } from 'react'; interface Props { className?: string; fadeIn?: boolean; buttonKind?: 'clean' | 'secondary'; isSmall?: boolean; direction?: 'Down' | 'Up'; title: React.ReactNode; alt?: string; disabled?: boolean; isPaddingContent?: boolean; isMetapropertyDropdown?: boolean; excludeRefs?: React.MutableRefObject[]; children: (toggle: () => void) => React.ReactNode; } export declare function Dropdown({ buttonKind, direction, isSmall, fadeIn, isMetapropertyDropdown, ...props }: Props): React.JSX.Element; export {};