import type { Selector } from '../types/internal'; type Options = Readonly<{ timeout?: number; }>; /** * Selects text in input elements. */ export declare const selectText: (selector: Selector, start?: number, end?: number, options?: Options) => Promise; export {};