import { ExtractDataTypeFromV4ResponseStructure, MainResponseConverter } from "../response/MainResponseConverter"; import { QFunction } from "./QFunction"; /** * Base class for handling an V4 OData function. * * This includes handling of entity id paths (same format as V4 functions). */ export declare abstract class QFunctionV4 extends QFunction { protected responseConverter?: MainResponseConverter> | undefined; constructor(name: string, responseConverter?: MainResponseConverter> | undefined); isV2(): boolean; getResponseConverter(): MainResponseConverter> | undefined; }