import { type DriveItem } from '@microsoft/msgraph-sdk/models/index.js';
import { type ContentRequestBuilder } from './content/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the root property of the microsoft.graph.sharedDriveItem entity.
 */
export interface RootRequestBuilder extends BaseRequestBuilder<RootRequestBuilder> {
    /**
     * Provides operations to manage the media for the sharedDriveItem entity.
     */
    get content(): ContentRequestBuilder;
    /**
     * Used to access the underlying driveItem. Deprecated -- use driveItem instead.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<DriveItem>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<RootRequestBuilderGetQueryParameters> | undefined): Promise<DriveItem | undefined>;
    /**
     * Used to access the underlying driveItem. Deprecated -- use driveItem instead.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<RootRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
 * Used to access the underlying driveItem. Deprecated -- use driveItem instead.
 */
export interface RootRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const RootRequestBuilderUriTemplate = "{+baseurl}/shares/{sharedDriveItem%2Did}/root{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const RootRequestBuilderNavigationMetadata: Record<Exclude<keyof RootRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const RootRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map