import { type EntitiesApiGetAllEntitiesVisualizationObjectsRequest } from "@gooddata/api-client-tiger"; import { type IFilterBaseOptions, type IInsightsQuery, type IInsightsQueryResult, type QueryMethod } from "@gooddata/sdk-backend-spi"; import type { ObjectOrigin } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../../types/index.js"; export declare class InsightsQuery implements IInsightsQuery { readonly authCall: TigerAuthenticatedCallGuard; private requestParameters; private size; private page; private filter; private sort; private include; private origin; private method; private totalCount; constructor(authCall: TigerAuthenticatedCallGuard, requestParameters: EntitiesApiGetAllEntitiesVisualizationObjectsRequest); private setTotalCount; withSize(size: number): IInsightsQuery; withPage(page: number): IInsightsQuery; withFilter(filter: IFilterBaseOptions): IInsightsQuery; withSorting(sort: string[]): IInsightsQuery; withInclude(include: string[]): IInsightsQuery; withOrigin(origin: ObjectOrigin): IInsightsQuery; withMethod(method: QueryMethod): IInsightsQuery; query(): Promise; } //# sourceMappingURL=insightsQuery.d.ts.map