import * as React from 'react'; import { StandardProps } from '../../common'; export interface MenuListItemProps extends StandardProps { /** * Whether the button is active. */ active?: boolean; /** * The content of the component. */ children?: React.ReactNode; /** * Making a row more condensed. */ condensed?: boolean; } export declare const MenuListItem: React.SFC & { inner: { readonly StyledMenuListItem: any; }; };