/** * ## Update * This module facilitates the updating of kiosk software and applications, ensuring up-to-date features and security. * * @packageDocumentation */ export declare class Update { /** * Get the current version number * @example * ```javascript * eflyn.update.getVersionSync(); * ``` */ getVersionSync(): string; /** * Reinstalls the platform version. Uses the profile version (if available) * @example * ```javascript * eflyn.update.reinstall(); * ``` */ reinstall(version?: string): Promise; }