/** * Purpose: Popup "Update now" button — wires self-update endpoint + reload-extension prompt. * Why: Lets users one-click upgrade the daemon from inside the extension. * Docs: docs/features/feature/self-update/index.md */ import type { components } from '../generated/openapi-types.js'; type HealthResponse = components['schemas']['HealthResponse']; /** * Render the update-available banner based on latest health. No-op if no * upgrade is offered by the daemon. */ export declare function renderUpdateAvailableBanner(health: HealthResponse): Promise; export {}; //# sourceMappingURL=update-button.d.ts.map