import { UseQueryOptions } from '@tanstack/react-query'; import type { BackfillTaskStatusDataV3 } from '../schemas/BackfillTaskStatusDataV3'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetBackfillTaskStatusV3QueryPathParams { job_id: string; } export interface GetBackfillTaskStatusV3QueryQueryParams { account_identifier: string; } export type GetBackfillTaskStatusV3OkResponse = ResponseWithPagination<{ data: BackfillTaskStatusDataV3; }>; export type GetBackfillTaskStatusV3ErrorResponse = ErrorV3; export interface GetBackfillTaskStatusV3Props extends GetBackfillTaskStatusV3QueryPathParams, Omit, 'url'> { queryParams: GetBackfillTaskStatusV3QueryQueryParams; } export declare function getBackfillTaskStatusV3(props: GetBackfillTaskStatusV3Props): Promise; /** * Get backfill task status */ export declare function useGetBackfillTaskStatusV3Query(props: GetBackfillTaskStatusV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;