export declare const SERVICE_NAME = "read-my-chatgpt"; export declare const MCP_SERVER_NAME = "read-my-chatgpt"; export declare const LAUNCHD_LABEL = "io.github.async23.read-my-chatgpt"; export declare const LEGACY_SERVICE_NAME = "conversation-reader-mcp"; export declare const LEGACY_LAUNCHD_LABEL = "io.github.async23.conversation-reader-mcp"; export type InstallPaths = { serviceName: string; launchdLabel: string; homeDirectory: string; configDirectory: string; dataDirectory: string; serviceConfigPath: string; obscuraStorageDirectory: string; launchAgentPath: string; systemdUnitPath: string; stdoutLogPath: string; stderrLogPath: string; }; export declare function installPaths(options?: { env?: NodeJS.ProcessEnv; homeDirectory?: string; }): InstallPaths; export declare function legacyInstallPaths(options?: { env?: NodeJS.ProcessEnv; homeDirectory?: string; }): InstallPaths;