import { UseQueryOptions } from '@tanstack/react-query'; import type { PlainTextResponseResponse } from '../responses/PlainTextResponseResponse'; import type { BadRequestResponse } from '../responses/BadRequestResponse'; import type { UnauthenticatedResponse } from '../responses/UnauthenticatedResponse'; import type { UnauthorizedResponse } from '../responses/UnauthorizedResponse'; import type { NotFoundResponse } from '../responses/NotFoundResponse'; import type { InternalServerErrorResponse } from '../responses/InternalServerErrorResponse'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetMigrationLogsForImageQueryPathParams { id: string; image_id: string; } export type GetMigrationLogsForImageOkResponse = ResponseWithPagination; export type GetMigrationLogsForImageErrorResponse = BadRequestResponse | UnauthenticatedResponse | UnauthorizedResponse | NotFoundResponse | InternalServerErrorResponse; export interface GetMigrationLogsForImageProps extends GetMigrationLogsForImageQueryPathParams, Omit, 'url'> { } export declare function getMigrationLogsForImage(props: GetMigrationLogsForImageProps): Promise; /** * Get migration logs for an image */ export declare function useGetMigrationLogsForImageQuery(props: GetMigrationLogsForImageProps, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;