import type { Locator } from '@playwright/test';
import type { Selector } from '../types/internal';
type Options = Parameters<Locator['check']>[0];
/**
 * Checks checkbox or radio element, if it is not checked yet.
 */
export declare const check: (selector: Selector, options?: Options) => Promise<void>;
export {};
