import { TestInstance } from '../../types.js'; import { keyboardKey, keyboardOptions } from './types.js'; export type { keyboardOptions, keyboardKey }; export declare function keyboard(instance: TestInstance, text: string, options?: Partial): void | Promise; export declare function keyboardImplementationWrapper(instance: TestInstance, text: string, config?: Partial): { promise: Promise; };