import React, { HTMLAttributes } from "react";
export interface Props extends HTMLAttributes {
alignMenuLeft?: boolean;
buttonStyle?: React.CSSProperties;
label?: string;
listLabel?: string;
text?: JSX.Element | string;
nav?: boolean;
}
/**
* Renders a dropdown menu. By default, only a passed "text" is rendered. If clicked,
* a floating div is rendered below the "text" with list contents inside. Clicking anywhere
* outside the floating div will close the dropdown.
*/
declare const Dropdown: ({ alignMenuLeft, children, className, id, label, listLabel, text, buttonStyle }: Props) => JSX.Element;
export default Dropdown;
//# sourceMappingURL=index.d.ts.map