import { type IMemoryCreatedByUsers, type IMemoryItemsQuery, type IMemoryItemsService } from "@gooddata/sdk-backend-spi"; import { type IMemoryItemDefinition, type IMemoryItemMetadataObject } from "@gooddata/sdk-model"; import { type TigerAuthenticatedCallGuard } from "../../../types/index.js"; export declare class MemoryItemsService implements IMemoryItemsService { private readonly authCall; private readonly workspaceId; constructor(authCall: TigerAuthenticatedCallGuard, workspaceId: string); getMemoryItemsQuery(): IMemoryItemsQuery; create(item: IMemoryItemDefinition): Promise; update(id: string, item: IMemoryItemDefinition): Promise; patch(id: string, item: Partial): Promise; delete(id: string): Promise; getCreatedByUsers(): Promise; } //# sourceMappingURL=MemoryItemsService.d.ts.map