/** * Detect when the user starts typing. * Fires when a keydown event produces a printable character and the active element is not an input. * * @param callback - Called when typing starts * @returns A cleanup function */ export declare function onStartTyping(callback: (event: KeyboardEvent) => void): () => void;