import React, { HTMLAttributes, ReactNode } from "react"; import { ButtonProps } from "../Button"; import { Colors } from "../colors"; export interface DropDownProps extends HTMLAttributes { buttonProps?: ButtonProps; header?: string; arrow?: boolean; menuItems?: { title: string; onClick: () => void; disabled?: boolean; leftNode?: ReactNode; rightNode?: ReactNode; }[]; background?: Colors; } declare const DropDown: ({ className, buttonProps, menuItems, header, arrow, background, ...props }: DropDownProps) => React.JSX.Element; export default DropDown;