import { QParamModel } from "../param/QParamModel"; import { QFunctionV4 } from "./QFunctionV4"; /** * Represents a function to produce the id path of an entity, e.g. MyEntity(number=123,name='Test'). * There's no difference between V2 and V4 here. */ export declare abstract class QId extends QFunctionV4 { constructor(name: string); abstract getParams(): Array>; }