export declare const $userInput: import("nanostores").MapStore<{ value: string; focusedChar: number; }>; export declare const inputActions: { clear(): void; deleteCurrent(): void; deletePrevious(): void; addCharAtCurrentPoition(newChar: string): void; moveLeft(): void; moveRight(): void; };