export interface UpdateManifest { name: string; version: string; skill_url: string; changelog_url: string | null; message: string | null; } export declare function fetchManifest(): Promise; export declare function getCurrentVersion(): string; export declare function checkForUpdate(): Promise;