/** * Read `element.value` for form elements (input, textarea, select). * * Sentinel returns: * - `Element not found: ` when the selector matches nothing * - `Element has no value property: ` when matched element is not a * form control (e.g., a `
`) * * Returns the empty string for cleared inputs (distinguishable from the * "no value property" case via the sentinel). */ export declare const queryValueBySelector: import("../types").CommandModule;