type SystemdUserLingerStatus = { user: string; linger: "yes" | "no"; }; export declare function readSystemdUserLingerStatus(env: Record): Promise; export declare function enableSystemdUserLinger(params: { env: Record; user?: string; sudoMode?: "prompt" | "non-interactive"; }): Promise<{ ok: boolean; stdout: string; stderr: string; code: number; }>; export {};