export declare const initializeKeytar: () => void;
declare const GITHUB_SECRET_KEY = "githubSecret";
export declare function get(key: string): Promise<string | null>;
export declare function get(key: typeof GITHUB_SECRET_KEY): Promise<string | null>;
export declare function set(key: string, value: string): Promise<void>;
export declare function set(key: typeof GITHUB_SECRET_KEY, value: string): Promise<void>;
export declare function remove(key: string): Promise<boolean>;
export {};
//# sourceMappingURL=keytar.d.ts.map