import type { WeatherPayload } from './shared'; /** * Open Timepage and show weather for a specified day or week. * * @param payload Weather payload. * @returns Timepage open weather URL. * @example * openWeather({ day: 'today' }) * // => 'timepage://open_weather?day=today' * @example * openWeather({ week: 'next' }) * // => 'timepage://open_weather?week=next' * * @link https://bonobolabs.com/support/timepage/introduction/timepages-url-schemes/ */ export declare function openWeather(payload: WeatherPayload): string;