export declare type RebootArgs = { waiting: number; onCountDown: (time: number) => void; }; export declare function rebootCountDown(reboot: () => Promise, args?: RebootArgs): Promise; export declare function showRebootModal(reboot: () => Promise): void;