import { UseQueryOptions } from '@tanstack/react-query'; import type { LifecycleExecutionResponseV3Response } from '../responses/LifecycleExecutionResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetLifecycleExecutionV3QueryPathParams { executionId: string; } export interface GetLifecycleExecutionV3QueryQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; } export type GetLifecycleExecutionV3OkResponse = ResponseWithPagination; export type GetLifecycleExecutionV3ErrorResponse = ErrorV3; export interface GetLifecycleExecutionV3Props extends GetLifecycleExecutionV3QueryPathParams, Omit, 'url'> { queryParams: GetLifecycleExecutionV3QueryQueryParams; } export declare function getLifecycleExecutionV3(props: GetLifecycleExecutionV3Props): Promise; /** * Returns a specific lifecycle execution by ID. */ export declare function useGetLifecycleExecutionV3Query(props: GetLifecycleExecutionV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;