/** * Indicates whether a visual control should display itself for reading or for editing. * * @public */ declare enum DisplayMode { /** * The page, control, or editing surface is in a mode intended for reading. It may have some interactive * features, but the authoring controls are not enabled. */ Read = 1, /** * The page, control, or editing surface is in a mode intended for authoring new content. It may display * editing panels or other controls that are not part of the normal reading experience. */ Edit = 2, /** * The page, control, or editing surface is in a mode intended for preview the saved content. It could * preview the content in different devices and targeting audiences. * * @alpha */ Preview = 3 } export default DisplayMode; //# sourceMappingURL=DisplayMode.d.ts.map