import { Observable } from 'rxjs'; import { PanelConfig } from '../types/panel-config'; /** * Creates an observable that emits a panel config which slides a panel on/off the screen. * * If overlay is True the panel floats over top of content, and when False it pushes content. */ export declare function PanelSlide(order: number | Observable, size: number | Observable, overlay: boolean | Observable, toggle: boolean | Observable): Observable;