import React from "react"; import { StyleRulesCallback, WithStyles } from "@material-ui/core"; import { ButtonProps } from "../Button"; import { IconProps } from "../Icon"; declare const styles: StyleRulesCallback; interface MenuRendererOptions { handleClose: React.ChangeEventHandler<{}>; } export interface MenuButtonProps extends WithStyles { ButtonProps?: Partial; IconProps?: IconProps; menuRenderer: (options: MenuRendererOptions) => React.ReactNode; } declare const _default: React.ComponentType & import("@material-ui/core/styles/withStyles").StyledComponentProps>; export default _default;