import { type BaseRequestBuilder, type RequestConfiguration, type RequestInformation, type RequestsMetadata } from '@microsoft/kiota-abstractions'; /** * Builds and executes requests for operations under /videolibrary/resetApiKey */ export interface ResetApiKeyRequestBuilder extends BaseRequestBuilder { /** * [ResetPasswordQuery API Docs](https://docs.bunny.net/reference/videolibrarypublic_resetpassword) * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. */ post(requestConfiguration?: RequestConfiguration | undefined): Promise; /** * [ResetPasswordQuery API Docs](https://docs.bunny.net/reference/videolibrarypublic_resetpassword) * @param requestConfiguration Configuration for the request such as headers, query parameters, and middleware options. * @returns {RequestInformation} */ toPostRequestInformation(requestConfiguration?: RequestConfiguration | undefined): RequestInformation; } /** * [ResetPasswordQuery API Docs](https://docs.bunny.net/reference/videolibrarypublic_resetpassword) */ export interface ResetApiKeyRequestBuilderPostQueryParameters { /** * The ID of the Video Library that should have the password reset */ id?: number; } /** * Uri template for the request builder. */ export declare const ResetApiKeyRequestBuilderUriTemplate = "{+baseurl}/videolibrary/resetApiKey?id={id}"; /** * Metadata for all the requests in the request builder. */ export declare const ResetApiKeyRequestBuilderRequestsMetadata: RequestsMetadata;