/** * Fill an input element with a value, with React-aware event dispatch. * * Strategy (handled in `generateFillInputCommand`): * 1. If selector is provided, try `document.querySelector` first. * 2. Otherwise, score visible inputs by placeholder/label/name/aria-label * similarity to the `placeholder` arg and pick the best match. * 3. Use the React-internal `nativeInputValueSetter` so React's controlled * components actually pick up the change. * 4. Dispatch focus → keydown → input → change → blur in sequence. */ export declare const fillInput: import("../types").CommandModule;