import { UseMutationOptions } from '@tanstack/react-query'; import type { BackfillTriggerDataV3 } from '../schemas/BackfillTriggerDataV3'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { BackfillTriggerRequestV3RequestBody } from '../requestBodies/BackfillTriggerRequestV3RequestBody'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface TriggerBackfillV3MutationQueryParams { account_identifier: string; } export type TriggerBackfillV3RequestBody = BackfillTriggerRequestV3RequestBody; export type TriggerBackfillV3OkResponse = ResponseWithPagination<{ data: BackfillTriggerDataV3; }>; export type TriggerBackfillV3ErrorResponse = ErrorV3; export interface TriggerBackfillV3Props extends Omit, 'url'> { queryParams: TriggerBackfillV3MutationQueryParams; body: TriggerBackfillV3RequestBody; } export declare function triggerBackfillV3(props: TriggerBackfillV3Props): Promise; /** * Trigger ES search backfill for an account */ export declare function useTriggerBackfillV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;