import { type ProgressBar } from '../../../models/core/index.js'; import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /Api/Discover/Progress */ export interface ProgressRequestBuilder extends BaseRequestBuilder { /** * Provides a detailed breakdown of the current progress of the discover module and it progress.This endpoint requires the `Discover.Read`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Provides a detailed breakdown of the current progress of the discover module and it progress.This endpoint requires the `Discover.Read`, or the `Everything.ReadWrite` scope (permission). * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Uri template for the request builder. */ export declare const ProgressRequestBuilderUriTemplate = "{+baseurl}/Api/Discover/Progress"; /** * Metadata for all the requests in the request builder. */ export declare const ProgressRequestBuilderRequestsMetadata: RequestsMetadata;