export interface ResetReadOnlyPasswordRequest { /** * User-specific [API Key](https://dash.bunny.net/account/settings) * @example "cb1a7c68-89a0-462a-9495-13ebd7366cfe" */ apiKey?: string; /** * The ID of the storage zone that should have the read-only password reset * @example 270299 */ id: number; } export type ResetReadOnlyPasswordResponse = void; export declare const resetReadOnlyPassword: import("untypeable/dist/client-ca591958").g; export declare const resetReadOnlyPasswordEndpoints: { readonly "POST /storagezone/resetReadOnlyPassword?id=:id": "POST /storagezone/resetReadOnlyPassword?id=:id"; readonly resetReadOnlyPassword: "resetReadOnlyPassword"; }; export declare function resetReadOnlyPasswordClient(defaultRequestInit: RequestInit, { apiKey, id }: ResetReadOnlyPasswordRequest): Promise; //# sourceMappingURL=resetReadOnlyPassword.d.ts.map