import { UseMutationOptions } from '@tanstack/react-query'; import type { LifecycleExecutionCreatedV3Response } from '../responses/LifecycleExecutionCreatedV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { LifecycleDryRunRequestBodyV3 } from '../schemas/LifecycleDryRunRequestBodyV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface CreateLifecycleExecutionV3MutationQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; } export type CreateLifecycleExecutionV3RequestBody = LifecycleDryRunRequestBodyV3; export type CreateLifecycleExecutionV3OkResponse = ResponseWithPagination; export type CreateLifecycleExecutionV3ErrorResponse = ErrorV3; export interface CreateLifecycleExecutionV3Props extends Omit, 'url'> { queryParams: CreateLifecycleExecutionV3MutationQueryParams; body: CreateLifecycleExecutionV3RequestBody; } export declare function createLifecycleExecutionV3(props: CreateLifecycleExecutionV3Props): Promise; /** * Triggers a dry-run execution for a lifecycle rule. */ export declare function useCreateLifecycleExecutionV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;