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