import { type UniversalTestContext } from '../augments/universal-testing-suite/universal-test-context.js';
/**
 * Clicks a label to select its input and then types the given text.
 *
 * @category Internal
 */
export declare function enterTextByLabel(testContext: Readonly<UniversalTestContext>, { label, text }: {
    label: string;
    text: string;
}): Promise<void>;
