import type { Locator } from '@playwright/test';
import type { Selector } from '../types/internal';
type Options = Parameters<Locator['click']>[0];
/**
 * Clicks an element.
 */
export declare const click: (selector: Selector, options?: Options) => Promise<void>;
export {};
