import { type EntitiesApiGetAllEntitiesFactsRequest } from "@gooddata/api-client-tiger"; import { type IFactsQuery, type IFactsQueryResult, type IFilterBaseOptions, type QueryMethod } from "@gooddata/sdk-backend-spi"; import type { ObjectOrigin } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../../types/index.js"; export declare class FactsQuery implements IFactsQuery { 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: EntitiesApiGetAllEntitiesFactsRequest); private setTotalCount; withSize(size: number): IFactsQuery; withPage(page: number): IFactsQuery; withFilter(filter: IFilterBaseOptions): IFactsQuery; withSorting(sort: string[]): IFactsQuery; withInclude(include: string[]): IFactsQuery; withOrigin(origin: ObjectOrigin): IFactsQuery; withMethod(method: QueryMethod): IFactsQuery; query(): Promise; } //# sourceMappingURL=factsQuery.d.ts.map