import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Provides operations to count the resources in the collection. */ export interface CountRequestBuilder extends BaseRequestBuilder { /** * Get the number of the resource * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {Promise} * @throws {ODataError} error when the service returns a 4XX or 5XX status code */ get(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * Get the number of the resource * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toGetRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * Get the number of the resource */ export interface CountRequestBuilderGetQueryParameters { /** * Filter items by property values */ filter?: string; /** * Search items by search phrases */ search?: string; } /** * Uri template for the request builder. */ export declare const CountRequestBuilderUriTemplate = "{+baseurl}/agreements/{agreement%2Did}/files/$count{?%24filter,%24search}"; /** * Metadata for all the requests in the request builder. */ export declare const CountRequestBuilderRequestsMetadata: RequestsMetadata; //# sourceMappingURL=index.d.ts.map