export interface IListResponse { elements: T[]; page: number; pageSize: number; total: number; type: string; } export interface IListRequestOptions { count?: number; depth?: Depth; lastUpdatedAt?: number; orderBy?: string; page?: number; search?: string; } export declare enum Depth { minimal = "minimal", partial = "partial", complete = "complete" } //# sourceMappingURL=rest-api-interfaces.d.ts.map