import { type Locator } from '@playwright/test';
/**
 * Expects that all matches for the given locator are either visible or hidden (controlled by
 * `isVisible`).
 *
 * @category Internal
 */
export declare function expectAllVisible(locator: Readonly<Locator>, isVisible: boolean): Promise<void>;
