declare class KeyTypeAction { #private; constructor(); delay(ms: number): this; get natural(): this; get instant(): this; get fast(): this; get veryFast(): this; get slow(): this; get verySlow(): this; send(phrase: string): Promise; } export default KeyTypeAction;