type StoredGitHubAuth = { login: string; token: string; savedAt: string; }; export declare function getGitHubAuthFilePath(): string; export declare function readStoredGitHubAuth(): Promise; export declare function writeStoredGitHubAuth(login: string, token: string): Promise; export declare function clearStoredGitHubAuth(): Promise; export {};