/** * Presentation modes * * Usage: * * import { Presentation } from '@kui-shell/core' * * { * type: 'custom', * presentation: Presentation.SidecarFullscreen, * content: ... * } * */ declare enum Presentation { Default = 0, FixedSize = 1, SidecarThin = 2, SidecarFullscreen = 3, SidecarFullscreenForPopups = 4 } export default Presentation;