import { type OnPremAuthenticationPolicy } from '@microsoft/msgraph-beta-sdk/models/index.js';
import { type AppliesToRequestBuilder } from './appliesTo/index.js';
import { type BaseRequestBuilder, type KeysToExcludeForNavigationMetadata, type NavigationMetadata, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions';
/**
 * Provides operations to manage the onPremAuthenticationPolicies property of the microsoft.graph.policyRoot entity.
 */
export interface OnPremAuthenticationPolicyItemRequestBuilder extends BaseRequestBuilder<OnPremAuthenticationPolicyItemRequestBuilder> {
    /**
     * Provides operations to manage the appliesTo property of the microsoft.graph.stsPolicy entity.
     */
    get appliesTo(): AppliesToRequestBuilder;
    /**
     * Delete an onPremAuthenticationPolicy object.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     * @see {@link https://learn.microsoft.com/graph/api/onpremauthenticationpolicy-delete?view=graph-rest-beta|Find more info here}
     */
    delete(requestConfiguration?: RequestConfiguration<object> | undefined): Promise<void>;
    /**
     * Read the properties and relationships of onPremAuthenticationPolicy object.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<OnPremAuthenticationPolicy>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     * @see {@link https://learn.microsoft.com/graph/api/onpremauthenticationpolicy-get?view=graph-rest-beta|Find more info here}
     */
    get(requestConfiguration?: RequestConfiguration<OnPremAuthenticationPolicyItemRequestBuilderGetQueryParameters> | undefined): Promise<OnPremAuthenticationPolicy | undefined>;
    /**
     * Update the properties of an onPremAuthenticationPolicy object.
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {Promise<OnPremAuthenticationPolicy>}
     * @throws {ODataError} error when the service returns a 4XX or 5XX status code
     * @see {@link https://learn.microsoft.com/graph/api/onpremauthenticationpolicy-update?view=graph-rest-beta|Find more info here}
     */
    patch(body: OnPremAuthenticationPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): Promise<OnPremAuthenticationPolicy | undefined>;
    /**
     * Delete an onPremAuthenticationPolicy object.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toDeleteRequestInformation(requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
    /**
     * Read the properties and relationships of onPremAuthenticationPolicy object.
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toGetRequestInformation(requestConfiguration?: RequestConfiguration<OnPremAuthenticationPolicyItemRequestBuilderGetQueryParameters> | undefined): RequestInformation;
    /**
     * Update the properties of an onPremAuthenticationPolicy object.
     * @param body The request body
     * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options.
     * @returns {RequestInformation}
     */
    toPatchRequestInformation(body: OnPremAuthenticationPolicy, requestConfiguration?: RequestConfiguration<object> | undefined): RequestInformation;
}
/**
 * Read the properties and relationships of onPremAuthenticationPolicy object.
 */
export interface OnPremAuthenticationPolicyItemRequestBuilderGetQueryParameters {
    /**
     * Expand related entities
     */
    expand?: string[];
    /**
     * Select properties to be returned
     */
    select?: string[];
}
/**
 * Uri template for the request builder.
 */
export declare const OnPremAuthenticationPolicyItemRequestBuilderUriTemplate = "{+baseurl}/policies/onPremAuthenticationPolicies/{onPremAuthenticationPolicy%2Did}{?%24expand,%24select}";
/**
 * Metadata for all the navigation properties in the request builder.
 */
export declare const OnPremAuthenticationPolicyItemRequestBuilderNavigationMetadata: Record<Exclude<keyof OnPremAuthenticationPolicyItemRequestBuilder, KeysToExcludeForNavigationMetadata>, NavigationMetadata>;
/**
 * Metadata for all the requests in the request builder.
 */
export declare const OnPremAuthenticationPolicyItemRequestBuilderRequestsMetadata: RequestsMetadata;
//# sourceMappingURL=index.d.ts.map