import type { Me } from "./backend.js"; import { type ActiveOrgInput } from "./org.js"; import type { ResolvedConfig } from "../shared/config.js"; export interface WhoamiDeps { print: (line: string) => void; /** The machine's API host + PAT. The BINDING's apiUrl is never used here. */ config: () => Promise; getMe: (cfg: ResolvedConfig) => Promise; org: ActiveOrgInput; } export declare function whoamiCommand(deps: WhoamiDeps): Promise;