import { type WithChannelNameItemRequestBuilder } from './item/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata } from '@microsoft/kiota-abstractions';
/**
 * Builds and executes requests for operations under /Api/Update/Shield/Download/Channel
 */
export interface ChannelRequestBuilder extends BaseRequestBuilder<ChannelRequestBuilder> {
    /**
     * Gets an item from the ApiSdk.Api.Update.Shield.Download.Channel.item collection
     * @param channelName Name of the deploy channel to operate against.
     * @returns {WithChannelNameItemRequestBuilder}
     */
    byChannelName(channelName: string): WithChannelNameItemRequestBuilder;
}
/**
 * Uri template for the request builder.
 */
export declare const ChannelRequestBuilderUriTemplate = "{+baseurl}/Api/Update/Shield/Download/Channel";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const ChannelRequestBuilderNavigationMetadata: Record<Exclude<keyof ChannelRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
