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