export declare function setPassphrase(passphrase: string): void; export declare function setGlobal(key: string, value: string): void; export declare function getGlobal(key?: string): Record | string | undefined; export declare function listGlobalKeys(): string[]; export declare function setProject(project: string, key: string, value: string): void; export declare function getProject(project: string): Record; export declare function listProjectKeys(project: string): string[]; export declare function gitignoreCoversEnv(content: string): boolean; export declare function injectEnv(project: string, projectPath: string): number;