import { HttpTransport } from '../_http'; import { RequestOptions } from '../base'; import { BacklogItem, BacklogItemListParams, BacklogItemListResponse, BacklogItemHistoryListParams, CreateBacklogItemRequest, UpdateBacklogItemRequest, AssignBacklogItemRequest, AssignBacklogItemResponse } from '../../models'; export declare function getBacklogItems(http: HttpTransport, params?: BacklogItemListParams, options?: RequestOptions): Promise; export declare function getAllBacklogItems(http: HttpTransport, params?: Omit, options?: RequestOptions): Promise; export declare function createBacklogItem(http: HttpTransport, data: CreateBacklogItemRequest, options?: RequestOptions): Promise; export declare function getBacklogItem(http: HttpTransport, backlogItemId: string, options?: RequestOptions): Promise; export declare function updateBacklogItem(http: HttpTransport, backlogItemId: string, data: UpdateBacklogItemRequest, options?: RequestOptions): Promise; export declare function deleteBacklogItem(http: HttpTransport, backlogItemId: string, options?: RequestOptions): Promise; export declare function assignBacklogItem(http: HttpTransport, backlogItemId: string, data: AssignBacklogItemRequest, options?: RequestOptions): Promise; export declare function getBacklogItemHistory(http: HttpTransport, params?: BacklogItemHistoryListParams, options?: RequestOptions): Promise; export declare function getAllBacklogItemHistory(http: HttpTransport, params?: Omit, options?: RequestOptions): Promise; //# sourceMappingURL=backlogItems.d.ts.map