import { Observable } from 'rxjs'; import { PanelConfig } from '../types/panel-config'; /** * Creates an observable that emits a panel that doesn't push or pull content. Often used to add a top menu bar. */ export declare function PanelStatic(order: number | Observable, size: number | Observable): Observable;