export interface BaseWatcher {
    subscribe(fn: (href: string) => void): () => void;
    get(): string;
    set(val: string): void;
    update(fn: (href: string) => string): void;
}
export declare function apiBase(): BaseWatcher;
