import React from 'react'; import { MenuItemProps } from '@material-ui/core'; export interface BlockTypeMenuItemProps extends Omit { /** * If `true`, inline style will not be available from keyboard shortcuts * @default false */ disableKeyboardShortcuts?: boolean; /** * The inline style value to associate with the button */ value: string; /** * */ defaultSelected?: boolean; } declare const BlockTypeMenuItem: React.ForwardRefExoticComponent & React.RefAttributes>; export default BlockTypeMenuItem;