import { type Drive } from '@microsoft/msgraph-sdk/models/index.js';
import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the drive property of the microsoft.graph.list entity.
 */
export interface DriveRequestBuilder extends BaseRequestBuilder<DriveRequestBuilder> {
    /**
     * Allows access to the list as a drive resource with driveItems. Only present on document libraries.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<Drive>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     */
    get(requestConfiguration?: RequestConfiguration<DriveRequestBuilderGetQueryParameters> | undefined): Promise<Drive | undefined>;
    /**
     * Allows access to the list as a drive resource with driveItems. Only present on document libraries.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<DriveRequestBuilderGetQueryParameters> | undefined): RequestInformation;
}
/**
 * Allows access to the list as a drive resource with driveItems. Only present on document libraries.
 */
export interface DriveRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const DriveRequestBuilderUriTemplate = "{+baseurl}/drives/{drive%2Did}/list/drive{?%24expand,%24select}";
/**
 * Metadata for all the requests in the request builder.
 */
export declare const DriveRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map