import { ILink } from '../interface/controls/link';
import { PlaywrightHTMLElement } from './html-element';
export declare class PlaywrightLink extends PlaywrightHTMLElement implements ILink {
    constructor(cssLocator: string);
    location(): Promise<string>;
}
