Repository URL to install this package:
|
Version:
0.0.15 ▾
|
import React from 'react';
import { NO_OP } from 'exotic';
import { MenuDropdownProps } from './typings';
declare class MenuDropdown extends React.Component<MenuDropdownProps> {
static defaultProps: {
children: never[];
title: string;
isTouchEnabled: boolean;
onClick: typeof NO_OP;
icon: null;
};
toggle: () => void;
show: (event?: any) => void;
hide: (event?: any) => void;
render(): JSX.Element;
}
export default MenuDropdown;