/** * Check if GitHub CLI is installed */ export declare function checkGitHubCLI(): Promise; /** * Check if user is authenticated with GitHub CLI */ export declare function checkGitHubAuth(): Promise; /** * Set a GitHub secret */ export declare function setSecret(name: string, value: string): Promise; /** * Set a GitHub variable */ export declare function setVariable(name: string, value: string): Promise; /** * Get a GitHub variable value */ export declare function getVariable(name: string): Promise; /** * Push items to GitHub (secrets or variables) */ export declare function pushItems(items: string[], env: Record, type: "secret" | "variable", log?: (msg: string) => void): Promise<{ success: number; failed: number; }>; //# sourceMappingURL=github.d.ts.map