import { MARK_BOLD, MARK_CODE, MARK_ITALIC, MARK_SUPERSCRIPT, MARK_UNDERLINE } from '@udecode/plate-basic-marks'; import { PlatePluginComponent } from '@udecode/plate-common'; import { ELEMENT_H1, ELEMENT_H2, ELEMENT_H3, ELEMENT_H4, ELEMENT_H5, ELEMENT_H6 } from '@udecode/plate-heading'; import { ELEMENT_PARAGRAPH } from '@udecode/plate-paragraph'; export type DefaultPluginKey = typeof ELEMENT_H1 | typeof ELEMENT_H2 | typeof ELEMENT_H3 | typeof ELEMENT_H4 | typeof ELEMENT_H5 | typeof ELEMENT_H6 | typeof ELEMENT_PARAGRAPH | typeof MARK_BOLD | typeof MARK_CODE | typeof MARK_ITALIC | typeof MARK_SUPERSCRIPT | typeof MARK_UNDERLINE; export declare const createPlateUI: (overrideByKey?: Partial>) => { [key: string]: PlatePluginComponent; }; //# sourceMappingURL=components.d.ts.map