import { FC } from 'react'; import { InputSize, IAction } from '../../types'; interface IDropdownMenuProps { size?: InputSize; iconName?: string; header?: boolean; headerTitle?: string; headerSubtitle?: string; footer?: boolean; footerText?: string; footerAction?: () => void; options: IAction[]; right?: boolean; left?: boolean; targetID?: string; iconColor?: string; iconHoverColor?: string; iconBgColor?: string; iconBgHoverColor?: string; position?: string; zIndex?: number; textMode?: boolean; label?: string; isTextActive?: boolean; } export declare const DropdownMenu: FC; export {};