• Returns {
        clear: () => void;
        set: (this: void, value: string) => void;
        subscribe: (
            this: void,
            run: Subscriber<string>,
            invalidate?: () => void,
        ) => Unsubscriber;
        update: (this: void, updater: Updater<string>) => void;
    }

    • clear: () => void
    • set: (this: void, value: string) => void
    • subscribe: (this: void, run: Subscriber<string>, invalidate?: () => void) => Unsubscriber
    • update: (this: void, updater: Updater<string>) => void