export interface UseHighlightControlValue { /** True while a resting highlight ("guide") is on screen. */ highlightActive: boolean; clearHighlight: () => Promise; } export declare function useHighlightControl(): UseHighlightControlValue;