import { Observable } from 'rxjs'; import { PanelConfig } from '../types/panel-config'; /** * Creates a panel config that shows only a partial part of the panel, and toggles revealing the full size. When * it is toggled the panel is moved to reveal all and overlay center content. * * This preset is useful when you want to hide a partial part of the panel and then reveal it without changing * the side of the panel (which might causes flickering of panel content). */ export declare function PanelPartialReveal(order: number | Observable, size: number | Observable, visible: number | Observable, toggle: boolean | Observable): Observable;