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