import type { CheckResult, CheckDefinition } from "../types"; export interface GhCliInfo { installed: boolean; version: string | null; path: string | null; authenticated: boolean; username: string | null; scopes: string[]; error: string | null; } export declare function getGhCliInfo(): Promise; export declare function checkGhCli(): Promise; export declare function getGhCliCheckDefinition(): CheckDefinition;