import React from 'react'; import { MenuItemProps } from '@material-ui/core'; export interface TextAlignMenuItemProps 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: 'left' | 'center' | 'right' | 'justify'; /** * */ ignoreSelection?: boolean; /** * */ defaultSelected?: boolean; } declare const TextAlignMenuItem: React.ForwardRefExoticComponent & React.RefAttributes>; export default TextAlignMenuItem;