import { Actor } from '@testla/screenplay'; import { Headers, Response } from '../types'; import { ARequest } from './ARequest'; /** * Action Class. Send a HTTP HEAD Request. */ export declare class Head extends ARequest { private url; private constructor(); /** * Send a HTTP HEAD request to the specified url. * * @param {Actor} actor the actor * @return {Response} the response */ performAs(actor: Actor): Promise; /** * Send a HTTP head request to the specified url. * * @param {string} url the URL of the target. * @return {Head} new instance */ static from(url: string): Head; /** * Add headers to the HTTP HEAD request to send. * * @param {Headers} headers the headers. * @return {Head} this instance */ withHeaders(headers: Headers): Head; }