import { DriverSpecification } from "./driver-specification"; /** * An expedition driver that makes the vehicle, i.e. probably a web browser in this case, visit * a list of URLs. */ export declare class URLListDriverSpecification implements DriverSpecification { readonly urls: string[]; constructor(urls: string[]); asJson(): any; }