/**
 * Wall-clock now (epoch ms) shared by every countdown so they tick in lockstep.
 * The interval runs only while at least one countdown is subscribed: Svelte's
 * `readable` starts on the first subscriber and stops on the last.
 */
export declare const sharedNow: import("svelte/store").Readable<number>;
