callback will be fired when you start typing on a non editable element
function useStartTyping(callback: (event: KeyboardEvent) => void): void
useStartTyping(() => {
if (const inputRef: Kaioken.MutableRefObject<HTMLInputElement | null>
inputRef.current: HTMLInputElement | null
current) {
const inputRef: Kaioken.MutableRefObject<HTMLInputElement | null>
inputRef.current: HTMLInputElement
current.HTMLOrSVGElement.focus(options?: FocusOptions): void
[MDN Reference](https://developer.mozilla.org/docs/Web/API/HTMLElement/focus)focus()
}
})