import { UseQueryOptions } from '@tanstack/react-query'; import type { BackfillStateDataV3 } from '../schemas/BackfillStateDataV3'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetBackfillStateV3QueryQueryParams { account_identifier: string; } export type GetBackfillStateV3OkResponse = ResponseWithPagination<{ data: BackfillStateDataV3; }>; export type GetBackfillStateV3ErrorResponse = ErrorV3; export interface GetBackfillStateV3Props extends Omit, 'url'> { queryParams: GetBackfillStateV3QueryQueryParams; } export declare function getBackfillStateV3(props: GetBackfillStateV3Props): Promise; /** * Get backfill state by account */ export declare function useGetBackfillStateV3Query(props: GetBackfillStateV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;