import '@epic-web/workshop-utils/init-env'; export type UpdateResult = { success: boolean; message?: string; error?: Error; }; /** * Update the workshop to the latest version */ export declare function update({ silent, }?: { silent?: boolean; }): Promise;