import { MenuItem } from './menu'; export type MdMenuItemType = 'strong' | 'em' | 'ordered_list' | 'bullet_list' | 'paragraph' | 'blockquote' | 'h1' | 'h2' | 'h3'; export declare const getMenuItemByType: (type: MdMenuItemType) => MenuItem;