useInput.d.ts 220 Bytes
export declare function useInput(handleInput: (event: InputEvent) => void): {
    handleCompositionStart: () => void;
    handleCompositionUpdate: (event: any) => void;
    handleCompositionEnd: (event: any) => void;
};