import { type WithPullZoneIdLogRequestBuilder } from './withPullZoneIdLog/index.js'; import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /{mm}-{dd}-{yy} */ export interface WithMmWithDdWithYyRequestBuilder extends BaseRequestBuilder { /** * Builds and executes requests for operations under /{mm}-{dd}-{yy}/{pullZoneId}.log * @param pullZoneId The path parameter: pullZoneId * @returns {WithPullZoneIdLogRequestBuilder} */ withPullZoneIdLog(pullZoneId: number | undefined): WithPullZoneIdLogRequestBuilder; } /** * Uri template for the request builder. */ export declare const WithMmWithDdWithYyRequestBuilderUriTemplate = "{+baseurl}/{mm}-{dd}-{yy}"; /** * Metadata for all the navigation properties in the request builder. */ export declare const WithMmWithDdWithYyRequestBuilderNavigationMetadata: Record, NavigationMetadata>;