import React from 'react'; import { SvgIconTypeMap } from '@material-ui/core'; import { OverridableComponent } from '@material-ui/core/OverridableComponent'; interface IOption { label: string; value: string; } export interface IMenuProps { name: string; title?: string; Icon?: OverridableComponent>; tooltip?: string; options: IOption[]; onSelect?: Function; } export declare const Menu: React.FC; export {}; //# sourceMappingURL=index.d.ts.map