import { UseMutationOptions } from '@tanstack/react-query'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface RestorePackageV3MutationPathParams { id: string; } export interface RestorePackageV3MutationQueryParams { account_identifier: string; } export type RestorePackageV3OkResponse = ResponseWithPagination; export type RestorePackageV3ErrorResponse = ErrorV3; export interface RestorePackageV3Props extends RestorePackageV3MutationPathParams, Omit, 'url'> { queryParams: RestorePackageV3MutationQueryParams; } export declare function restorePackageV3(props: RestorePackageV3Props): Promise; /** * Restore a previously soft-deleted package/image by ID */ export declare function useRestorePackageV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;