import React, { PureComponent } from 'react'; declare type DropDownItemId = string; export interface DropDownItemProps { /** * The handler to call when clicking on the item of the DropDown. */ readonly onClick: (id: DropDownItemId) => void; /** * The ID to reference the clicked item in the `onClick` handker. */ readonly id: DropDownItemId; /** * The children to render within the anchor. */ readonly children: React.ReactNode; readonly className: string; } declare class DropDownItem extends PureComponent { render(): JSX.Element; private readonly handleClick; } export default DropDownItem;