/** Pi's private runtime storage. Snapshots exclude these exact locations. */ export interface PiRuntimeStorage { readonly agentDir: string; readonly sessionDirs: readonly string[]; } /** * Locates the session directories Pi would use. Tildes expand against the Pi environment's home. * Pi ignores unparseable settings and falls back to its default session directory, so this does too. */ export declare function piRuntimeStorage(agentDir: string, settingsFile: string, environment: Readonly): Promise; //# sourceMappingURL=pi-runtime-storage.d.ts.map