/** * Stop timer command payload definition. */ type StopTimer = { /** * Timer label. */ name: string; /** * Board title (optional). */ board?: string; }; /** * Stop timer in MultiTimer. * * @param payload Stop timer command payload. * @returns MultiTimer stop timer URL. * @example * stopTimer({ name: 'Lunch' }) * // => 'multitimer://api/stop-timer?name=Lunch' * @example * stopTimer({ name: 'Lunch', board: 'Work' }) * // => 'multitimer://api/stop-timer?name=Lunch&board=Work' * @link https://persapps.com/app/multitimer/url-scheme.php */ export declare function stopTimer(payload: StopTimer): string; export {};