import { IDelayLocations } from "../../../../api/response/IDelayLocations"; import AbstractAnalyzeHandler from "../../../../handlers/AbstractAnalyzeHandler"; export default class AddressHandler extends AbstractAnalyzeHandler { protected getAnalyzeURI(): string; protected getFields(): string[]; protected getOutput(json: IDelayLocations): Promise; protected getRequestParams(): string[]; }