/** * Report workspace /recon-setup completion to the web app when preferences exist. */ export type WorkspaceSetupReportResult = { reported: true; } | { reported: false; reason: "no_prefs" | "no_auth" | "request_failed"; }; export declare function readWorkspaceProjectId(): Promise; /** POST /api/onboarding/cli/workspace-setup-confirm when prefs + auth are present. */ export declare function reportWorkspaceSetupIfNeeded(options?: { installBearer?: string; }): Promise; //# sourceMappingURL=workspace-setup-report.d.ts.map