import { UseQueryOptions } from '@tanstack/react-query'; import type { LifecycleRuleResponseV3Response } from '../responses/LifecycleRuleResponseV3Response'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface GetLifecycleRuleV3QueryPathParams { id: string; } export interface GetLifecycleRuleV3QueryQueryParams { account_identifier: string; org_identifier?: string; project_identifier?: string; } export type GetLifecycleRuleV3OkResponse = ResponseWithPagination; export type GetLifecycleRuleV3ErrorResponse = ErrorV3; export interface GetLifecycleRuleV3Props extends GetLifecycleRuleV3QueryPathParams, Omit, 'url'> { queryParams: GetLifecycleRuleV3QueryQueryParams; } export declare function getLifecycleRuleV3(props: GetLifecycleRuleV3Props): Promise; /** * Returns a specific lifecycle rule by ID. */ export declare function useGetLifecycleRuleV3Query(props: GetLifecycleRuleV3Props, options?: Omit, 'queryKey' | 'queryFn'>): import("@tanstack/react-query").UseQueryResult;