export interface UseTextModeValue { textMode: boolean; toggleTextMode: () => Promise; } export declare function useTextMode(): UseTextModeValue;