import React from 'react'; import { IconName } from '../HeroIcon/HeroIcon'; export interface DropDownItemProps { title: string | React.ReactNode; icon?: IconName; href?: string; onClick?: (event: React.MouseEvent) => void; } export interface DropDownProps { children?: React.ReactNode; buttonText?: string; renderAs?: 'button' | 'div'; menuAlign?: 'left' | 'right'; listItems: DropDownItemProps[]; } export declare const DropDown: ({ children, buttonText, renderAs, listItems, menuAlign, }: DropDownProps) => JSX.Element;