export interface KeystrokeInjector { readonly name: string; isAvailable(): boolean; sendKeys(keys: string): Promise; sendText(text: string): Promise; }