import { BaseAPIRequestFactory } from './baseapi'; import { Configuration } from '../configuration'; import { RequestContext, ResponseContext } from '../http/http'; import { ContentLibraryItemListResponse } from '../models/ContentLibraryItemListResponse'; import { ContentLibraryItemResponse } from '../models/ContentLibraryItemResponse'; export declare class ContentLibraryItemsApiRequestFactory extends BaseAPIRequestFactory { detailsContentLibraryItem(id: string, _options?: Configuration): Promise; listContentLibraryItems(q?: string, id?: string, deleted?: boolean, folderUuid?: string, count?: number, page?: number, tag?: string, _options?: Configuration): Promise; } export declare class ContentLibraryItemsApiResponseProcessor { detailsContentLibraryItem(response: ResponseContext): Promise; listContentLibraryItems(response: ResponseContext): Promise; }