import { UseMutationOptions } from '@tanstack/react-query'; import type { ErrorV3 } from '../schemas/ErrorV3'; import type { ResponseWithPagination } from '../helpers'; import { FetcherOptions } from '../../../../fetcher/index.js'; export interface DeleteLifecycleRuleV3MutationPathParams { id: string; } export interface DeleteLifecycleRuleV3MutationQueryParams { account_identifier: string; } export type DeleteLifecycleRuleV3OkResponse = ResponseWithPagination; export type DeleteLifecycleRuleV3ErrorResponse = ErrorV3; export interface DeleteLifecycleRuleV3Props extends DeleteLifecycleRuleV3MutationPathParams, Omit, 'url'> { queryParams: DeleteLifecycleRuleV3MutationQueryParams; } export declare function deleteLifecycleRuleV3(props: DeleteLifecycleRuleV3Props): Promise; /** * Deletes a lifecycle rule. Only the owner scope may delete. */ export declare function useDeleteLifecycleRuleV3Mutation(options?: Omit, 'mutationKey' | 'mutationFn'>): import("@tanstack/react-query").UseMutationResult;