import React from 'react'; export interface IDropdownMenuItemProps { active?: boolean; children: any; className?: string; eventKey?: string; href?: string; target?: string; onClick?(e: any): void; onSelect?(key: string): void; [x: string]: any; } export declare const DropdownMenuItem: React.FC;