import Session from '../Session'; import Surface from '../Surface'; import XWaylandShellSurface from './XWaylandShellSurface'; import { XWindow } from './XWindow'; declare class XWaylandShell { static create(session: Session): XWaylandShell; private readonly session; constructor(session: Session); createSurface(window: XWindow, surface: Surface): XWaylandShellSurface; } export default XWaylandShell;