import list from "./commands/list.js"; import close from "./commands/close.js"; import getActive from "./commands/getActive.js"; import activate from "./commands/activate.js"; declare const WindowsManagerLinux: { list: typeof list; open: { app(appOrPath: string, ...args: string[]): Promise; file(path: string): Promise; url(path: string): Promise; }; close: typeof close; getActive: typeof getActive; activate: typeof activate; }; export default WindowsManagerLinux;